Browse Source

remove unused field

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1346 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Keith Donald 17 years ago
parent
commit
514940d6c5
  1. 14
      org.springframework.context/src/main/java/org/springframework/ui/binding/UserValue.java

14
org.springframework.context/src/main/java/org/springframework/ui/binding/UserValue.java

@ -53,20 +53,6 @@ public class UserValue { @@ -53,20 +53,6 @@ public class UserValue {
return value;
}
/**
* Is the user-entered value a String?
*/
public boolean isString() {
return value instanceof String;
}
/**
* Is the user-entered value a String[]?
*/
public boolean isStringArray() {
return value instanceof String[];
}
/**
* Creates a new UserValue list with a single element.
* @param property the property

Loading…
Cancel
Save