diff --git a/cas-client-core/src/main/java/org/jasig/cas/client/util/CommonUtils.java b/cas-client-core/src/main/java/org/jasig/cas/client/util/CommonUtils.java index 295bc09..d5df524 100644 --- a/cas-client-core/src/main/java/org/jasig/cas/client/util/CommonUtils.java +++ b/cas-client-core/src/main/java/org/jasig/cas/client/util/CommonUtils.java @@ -631,7 +631,6 @@ public final class CommonUtils { * @param str the string to convert, may be null * @param defaultValue the default value * @return the long represented by the string, or the default if conversion fails - * @since 2.1 */ public static long toLong(final String str, final long defaultValue) { if (str == null) { @@ -659,7 +658,6 @@ public final class CommonUtils { * @param str the string to convert, may be null * @param defaultValue the default value * @return the int represented by the string, or the default if conversion fails - * @since 2.1 */ public static int toInt(final String str, final int defaultValue) { if(str == null) {