Changing docstrings in atomixMapCommands.
Change-Id: I0b98de095a03a7baedc884f913d42db386dcb163
Showing
1 changed file
with
4 additions
and
4 deletions
| ... | @@ -139,7 +139,7 @@ public final class AtomixConsistentMapCommands { | ... | @@ -139,7 +139,7 @@ public final class AtomixConsistentMapCommands { |
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | /** | 141 | /** |
| 142 | - * Abstract key-based query. | 142 | + * Abstract value-based query. |
| 143 | */ | 143 | */ |
| 144 | @SuppressWarnings("serial") | 144 | @SuppressWarnings("serial") |
| 145 | public abstract static class ValueQuery<V> extends MapQuery<V> { | 145 | public abstract static class ValueQuery<V> extends MapQuery<V> { |
| ... | @@ -153,8 +153,8 @@ public final class AtomixConsistentMapCommands { | ... | @@ -153,8 +153,8 @@ public final class AtomixConsistentMapCommands { |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | /** | 155 | /** |
| 156 | - * Returns the key. | 156 | + * Returns the value. |
| 157 | - * @return key | 157 | + * @return value |
| 158 | */ | 158 | */ |
| 159 | public byte[] value() { | 159 | public byte[] value() { |
| 160 | return value; | 160 | return value; |
| ... | @@ -187,7 +187,7 @@ public final class AtomixConsistentMapCommands { | ... | @@ -187,7 +187,7 @@ public final class AtomixConsistentMapCommands { |
| 187 | } | 187 | } |
| 188 | 188 | ||
| 189 | /** | 189 | /** |
| 190 | - * Contains key command. | 190 | + * Contains value command. |
| 191 | */ | 191 | */ |
| 192 | @SuppressWarnings("serial") | 192 | @SuppressWarnings("serial") |
| 193 | public static class ContainsValue extends ValueQuery<Boolean> { | 193 | public static class ContainsValue extends ValueQuery<Boolean> { | ... | ... |
-
Please register or login to post a comment