diff --git a/src/main/java/org/springframework/data/redis/connection/RedisGeoCommands.java b/src/main/java/org/springframework/data/redis/connection/RedisGeoCommands.java index 2ad5b1764..3ed0fe19c 100644 --- a/src/main/java/org/springframework/data/redis/connection/RedisGeoCommands.java +++ b/src/main/java/org/springframework/data/redis/connection/RedisGeoCommands.java @@ -389,7 +389,7 @@ public interface RedisGeoCommands { /* * (non-Javadoc) - * @see org.springframework.data.mongodb.core.geo.Metric#getMultiplier() + * @see org.springframework.data.geo.Metric#getMultiplier() */ public double getMultiplier() { return multiplier; diff --git a/src/main/java/org/springframework/data/redis/repository/cdi/RedisRepositoryExtension.java b/src/main/java/org/springframework/data/redis/repository/cdi/RedisRepositoryExtension.java index 605c6be8b..5fe555ef4 100644 --- a/src/main/java/org/springframework/data/redis/repository/cdi/RedisRepositoryExtension.java +++ b/src/main/java/org/springframework/data/redis/repository/cdi/RedisRepositoryExtension.java @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.springframework.data.redis.repository.cdi; import java.lang.annotation.Annotation; @@ -183,7 +182,7 @@ public class RedisRepositoryExtension extends CdiRepositoryExtensionSupport { private CdiRepositoryBean createRepositoryBean(Class repositoryType, Set qualifiers, BeanManager beanManager) { - // Determine the MongoOperations bean which matches the qualifiers of the repository. + // Determine the KeyValueOperations bean which matches the qualifiers of the repository. Bean redisKeyValueTemplate = this.redisKeyValueTemplates.get(qualifiers); if (redisKeyValueTemplate == null) { @@ -205,7 +204,7 @@ public class RedisRepositoryExtension extends CdiRepositoryExtensionSupport { */ private RedisKeyValueAdapterBean createRedisKeyValueAdapterBean(Set qualifiers, BeanManager beanManager) { - // Determine the MongoOperations bean which matches the qualifiers of the repository. + // Determine the RedisOperations bean which matches the qualifiers of the repository. Bean> redisOperationsBean = this.redisOperations.get(qualifiers); if (redisOperationsBean == null) { @@ -227,7 +226,7 @@ public class RedisRepositoryExtension extends CdiRepositoryExtensionSupport { private RedisKeyValueTemplateBean createRedisKeyValueTemplateBean(Set qualifiers, BeanManager beanManager) { - // Determine the MongoOperations bean which matches the qualifiers of the repository. + // Determine the RedisKeyValueAdapter bean which matches the qualifiers of the repository. Bean redisKeyValueAdapterBean = this.redisKeyValueAdapters.get(qualifiers); if (redisKeyValueAdapterBean == null) {