Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwilk2010-11-01 21:16:18 +0000
committerRyan D. Brooks2010-11-01 21:16:18 +0000
commitb8ad9c21afd3c68763d8734614020bccaa55d0b9 (patch)
treee8104d124d892588b532206a77d4bb73358a8ea2 /plugins
parent9ed2887bfb59931ddef36e8d9d44f2f732ae246f (diff)
downloadorg.eclipse.osee-b8ad9c21afd3c68763d8734614020bccaa55d0b9.tar.gz
org.eclipse.osee-b8ad9c21afd3c68763d8734614020bccaa55d0b9.tar.xz
org.eclipse.osee-b8ad9c21afd3c68763d8734614020bccaa55d0b9.zip
refactor: Update Strings.isValid to accept charSequence
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Strings.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Strings.java b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Strings.java
index 3900665d6aa..de18159c7e7 100644
--- a/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Strings.java
+++ b/plugins/org.eclipse.osee.framework.jdk.core/src/org/eclipse/osee/framework/jdk/core/util/Strings.java
@@ -27,10 +27,6 @@ public class Strings {
return value != null && value.length() > 0;
}
- public static boolean isValid(String value) {
- return value != null && value.length() > 0;
- }
-
public static String emptyString() {
return EMPTY_STRING;
}

Back to the top