Merge "Integer.valueOf() -> Integer.parseInt() to avoid allocation."

This commit is contained in:
Tobias Thierer
2016-04-21 13:23:18 +00:00
committed by Gerrit Code Review

View File

@@ -1168,7 +1168,7 @@ public final class PrintSpoolerService extends Service {
if (TYPE_STRING.equals(type)) {
advancedOptions.putString(key, value);
} else if (TYPE_INT.equals(type)) {
advancedOptions.putInt(key, Integer.valueOf(value));
advancedOptions.putInt(key, Integer.parseInt(value));
}
parser.next();
skipEmptyTextTags(parser);