commit | 4a300fee2ef1c03902d0fb25ceb02aa01d0fab46 | [log] [tgz] |
---|---|---|
author | Tobias Soloschenko <tsoloschenko@apache.org> | Wed Mar 22 15:23:45 2017 +0100 |
committer | pascalschumacher <pascalschumacher@gmx.net> | Wed Mar 22 17:32:14 2017 +0100 |
tree | 4647f89bac6ca8c02890bfd3b794005b477f188f | |
parent | 5d6c176388e417869421adf2eb21ac5c291f0884 [diff] |
Fixed javadoc of MutableBoolean setTrue / setFalse (closes #260)
diff --git a/src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java b/src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java index 085df40..97781bf 100644 --- a/src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java +++ b/src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java
@@ -90,7 +90,7 @@ public void setValue(final boolean value) { } /** - * Sets the value to true. + * Sets the value to false. * * @since 3.3 */ @@ -99,7 +99,7 @@ public void setFalse() { } /** - * Sets the value to false. + * Sets the value to true. * * @since 3.3 */