You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2017/04/17 12:19:51 UTC

[28/50] [lang] Fixed javadoc of MutableBoolean setTrue / setFalse (closes #260)

Fixed javadoc of MutableBoolean setTrue / setFalse (closes #260)


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/4a300fee
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/4a300fee
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/4a300fee

Branch: refs/heads/release
Commit: 4a300fee2ef1c03902d0fb25ceb02aa01d0fab46
Parents: 5d6c176
Author: Tobias Soloschenko <ts...@apache.org>
Authored: Wed Mar 22 15:23:45 2017 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Wed Mar 22 17:32:14 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/commons/lang3/mutable/MutableBoolean.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/4a300fee/src/main/java/org/apache/commons/lang3/mutable/MutableBoolean.java
----------------------------------------------------------------------
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 class MutableBoolean implements Mutable<Boolean>, Serializable, Comparabl
     }
 
     /**
-     * Sets the value to true.
+     * Sets the value to false.
      * 
      * @since 3.3
      */
@@ -99,7 +99,7 @@ public class MutableBoolean implements Mutable<Boolean>, Serializable, Comparabl
     }
 
     /**
-     * Sets the value to false.
+     * Sets the value to true.
      * 
      * @since 3.3
      */