From b4a00f93bf4592c657dff9df5a0ffcfe65ec7748 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Sun, 17 Jul 2011 01:43:57 +0000 Subject: [PATCH] add @since tags for and/or methods git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1147512 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/lang3/BooleanUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/BooleanUtils.java b/src/main/java/org/apache/commons/lang3/BooleanUtils.java index c5a09f35a..c08e5c9c1 100644 --- a/src/main/java/org/apache/commons/lang3/BooleanUtils.java +++ b/src/main/java/org/apache/commons/lang3/BooleanUtils.java @@ -884,6 +884,7 @@ public static String toString(boolean bool, String trueString, String falseStrin * @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 static boolean and(boolean... array) { * @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 static Boolean and(Boolean... array) { * @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 static boolean or(boolean... array) { * @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) {