Bug 1170884 - Replace "new Integer" with "Integer.valueOf". r=nalexander

--HG--
extra : commitid : Bu9mVzpdxbK
extra : rebase_source : e7ba0854b759dc4f9be0028603ae67ad107d760d
extra : histedit_source : b317bfcb27452a24aabe674b680651c8017a4152
This commit is contained in:
Michael Comella 2015-06-11 12:25:27 -07:00
parent 65e68c89b2
commit 17f15098d2

View File

@ -1773,7 +1773,7 @@ public class GeckoAppShell
String[] split = output.split("\\s+");
if (split.length <= pidColumn || split.length <= nameColumn)
continue;
Integer pid = new Integer(split[pidColumn]);
final Integer pid = Integer.valueOf(split[pidColumn]);
String name = pidNameMap.get(pid);
if (name == null) {
name = getAppNameByPID(pid.intValue());