Remove unnecessary allocation+unboxing of objects.
am: 46f0dd6
* commit '46f0dd69cdbc4fd8bac8330425f79dca3be4d4a1':
Remove unnecessary allocation+unboxing of objects.
Change-Id: Idfffa8fad0f6bcffa954752910524bdc879d65b7
This commit is contained in:
@@ -1747,7 +1747,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
||||
if(restoreDefaultNetworkDelayStr != null &&
|
||||
restoreDefaultNetworkDelayStr.length() != 0) {
|
||||
try {
|
||||
return Integer.valueOf(restoreDefaultNetworkDelayStr);
|
||||
return Integer.parseInt(restoreDefaultNetworkDelayStr);
|
||||
} catch (NumberFormatException e) {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -548,8 +548,7 @@ public class NetworkDiagnostics {
|
||||
mMeasurement.description += " src{" + getSocketAddressString() + "}";
|
||||
|
||||
// This needs to be fixed length so it can be dropped into the pre-canned packet.
|
||||
final String sixRandomDigits =
|
||||
Integer.valueOf(mRandom.nextInt(900000) + 100000).toString();
|
||||
final String sixRandomDigits = String.valueOf(mRandom.nextInt(900000) + 100000);
|
||||
mMeasurement.description += " qtype{" + mQueryType + "}"
|
||||
+ " qname{" + sixRandomDigits + "-android-ds.metric.gstatic.com}";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user