Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 246ed0e8 authored by Tobias Thierer's avatar Tobias Thierer Committed by android-build-merger
Browse files

Merge "Integer.valueOf() -> Integer.parseInt() to avoid allocation." am: c027ae49 am: a2ad95a1

am: 7ea07312

* commit '7ea07312':
  Integer.valueOf() -> Integer.parseInt() to avoid allocation.

Change-Id: I778b7ad298b7bfed8ffdc9e0be37084ff3123015
parents f1b92e43 7ea07312
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1295,7 +1295,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);