8015470: Remove redundant calls of toString() on String objects

Reviewed-by: dholmes, alanb
This commit is contained in:
Otavio Goncalves 2013-06-06 05:32:26 -04:00 committed by David Holmes
parent f405277c72
commit ddabf9f30a
5 changed files with 8 additions and 9 deletions

View File

@ -396,7 +396,7 @@ public class SearchFilter implements AttrFilter {
// do we need to begin with the first token?
if(proto.charAt(0) != WILDCARD_TOKEN &&
!value.toString().toLowerCase(Locale.ENGLISH).startsWith(
!value.toLowerCase(Locale.ENGLISH).startsWith(
subStrs.nextToken().toLowerCase(Locale.ENGLISH))) {
if(debug) {
System.out.println("faild initial test");

View File

@ -55,8 +55,7 @@ public class IncompleteAnnotationException extends RuntimeException {
public IncompleteAnnotationException(
Class<? extends Annotation> annotationType,
String elementName) {
super(annotationType.getName().toString() +
" missing element " +
super(annotationType.getName() + " missing element " +
elementName.toString());
this.annotationType = annotationType;

View File

@ -879,9 +879,9 @@ public class Main implements sun.rmi.rmic.Constants {
}
String[] args = new String[3];
args[0] = (arg0 != null ? arg0.toString() : "null");
args[1] = (arg1 != null ? arg1.toString() : "null");
args[2] = (arg2 != null ? arg2.toString() : "null");
args[0] = (arg0 != null ? arg0 : "null");
args[1] = (arg1 != null ? arg1 : "null");
args[2] = (arg2 != null ? arg2 : "null");
return java.text.MessageFormat.format(format, (Object[]) args);
}

View File

@ -256,8 +256,8 @@ class MemberDefinition implements Constants {
}
String name = this.name.toString();
return name.startsWith(prefixVal)
|| name.toString().startsWith(prefixLoc)
|| name.toString().startsWith(prefixThis);
|| name.startsWith(prefixLoc)
|| name.startsWith(prefixThis);
}
public boolean isAccessMethod() {

View File

@ -352,7 +352,7 @@ public class Utils {
result = new Character(value.charAt(0));
} else if (Number.class.isAssignableFrom(Utils.getClass(type))) {
result = createNumberFromStringValue(value);
} else if (value == null || value.toString().equals("null")) {
} else if (value == null || value.equals("null")) {
// hack for null value
result = null;
} else {