diff --git a/src/main/java/org/springframework/data/redis/core/BoundValueOperations.java b/src/main/java/org/springframework/data/redis/core/BoundValueOperations.java index 8b3381d91..bc388e484 100644 --- a/src/main/java/org/springframework/data/redis/core/BoundValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/BoundValueOperations.java @@ -1,12 +1,12 @@ /* * Copyright 2011-2017 the original author or authors. - * + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -19,7 +19,7 @@ import java.util.concurrent.TimeUnit; /** * Value (or String in Redis terminology) operations bound to a certain key. - * + * * @author Costin Leau * @author Mark Paluch */ @@ -77,7 +77,7 @@ public interface BoundValueOperations extends BoundKeyOperations { * Increment a floating point number value stored as string value under the bound key by {@code delta}. * * @param delta - * @see Redis Documentation: INCRBYFLOAT + * @see Redis Documentation: INCRBYFLOAT */ Double increment(double delta); diff --git a/src/main/java/org/springframework/data/redis/core/ValueOperations.java b/src/main/java/org/springframework/data/redis/core/ValueOperations.java index c544e5219..2760be35a 100644 --- a/src/main/java/org/springframework/data/redis/core/ValueOperations.java +++ b/src/main/java/org/springframework/data/redis/core/ValueOperations.java @@ -1,12 +1,12 @@ /* * Copyright 2011-2017 the original author or authors. - * + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,7 +22,7 @@ import java.util.concurrent.TimeUnit; /** * Redis operations for simple (or in Redis terminology 'string') values. - * + * * @author Costin Leau * @author Christoph Strobl * @author Mark Paluch @@ -85,7 +85,7 @@ public interface ValueOperations { /** * Set {@code value} of {@code key} and return its old value. - * + * * @param key must not be {@literal null}. * @see Redis Documentation: GETSET */ @@ -93,7 +93,7 @@ public interface ValueOperations { /** * Get multiple {@code keys}. Values are returned in the order of the requested keys. - * + * * @param keys must not be {@literal null}. * @see Redis Documentation: MGET */ @@ -101,7 +101,7 @@ public interface ValueOperations { /** * Increment an integer value stored as string value under {@code key} by {@code delta}. - * + * * @param key must not be {@literal null}. * @param delta * @see Redis Documentation: INCR @@ -110,10 +110,10 @@ public interface ValueOperations { /** * Increment a floating point number value stored as string value under {@code key} by {@code delta}. - * + * * @param key must not be {@literal null}. * @param delta - * @see Redis Documentation: INCRBYFLOAT + * @see Redis Documentation: INCRBYFLOAT */ Double increment(K key, double delta);