Author: mbenson
Date: Sun Jul 17 01:43:57 2011
New Revision: 1147512

URL: http://svn.apache.org/viewvc?rev=1147512&view=rev
Log:
add @since tags for and/or methods

Modified:
    
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/BooleanUtils.java

Modified: 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/BooleanUtils.java
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/BooleanUtils.java?rev=1147512&r1=1147511&r2=1147512&view=diff
==============================================================================
--- 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/BooleanUtils.java
 (original)
+++ 
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/BooleanUtils.java
 Sun Jul 17 01:43:57 2011
@@ -884,6 +884,7 @@ public class BooleanUtils {
      * @return {@code true} if the and is successful.
      * @throws IllegalArgumentException if {@code array} is {@code null}
      * @throws IllegalArgumentException if {@code array} is empty.
+     * @since 3.0.1
      */
     public static boolean and(boolean... array) {
         // Validates input
@@ -918,6 +919,7 @@ public class BooleanUtils {
      * @throws IllegalArgumentException if {@code array} is {@code null}
      * @throws IllegalArgumentException if {@code array} is empty.
      * @throws IllegalArgumentException if {@code array} contains a {@code 
null}
+     * @since 3.0.1
      */
     public static Boolean and(Boolean... array) {
         if (array == null) {
@@ -950,6 +952,7 @@ public class BooleanUtils {
      * @return {@code true} if the or is successful.
      * @throws IllegalArgumentException if {@code array} is {@code null}
      * @throws IllegalArgumentException if {@code array} is empty.
+     * @since 3.0.1
      */
     public static boolean or(boolean... array) {
         // Validates input
@@ -985,6 +988,7 @@ public class BooleanUtils {
      * @throws IllegalArgumentException if {@code array} is {@code null}
      * @throws IllegalArgumentException if {@code array} is empty.
      * @throws IllegalArgumentException if {@code array} contains a {@code 
null}
+     * @since 3.0.1
      */
     public static Boolean or(Boolean... array) {
         if (array == null) {


Reply via email to