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

Commit 3d05de03 authored by Tobias Thierer's avatar Tobias Thierer Committed by android-build-merger
Browse files

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

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

* commit '246ed0e8':
  Integer.valueOf() -> Integer.parseInt() to avoid allocation.

Change-Id: Ifaab6f4bcaeddf5f4634469e6e5c9e613aa5f624
parents e09d4bcf 246ed0e8
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);