Merge "Track constructor changes in libcore/"

am: f94eb29500

Change-Id: I344d9210bd173f78651318366c852f65afe969d6
This commit is contained in:
Neil Fuller
2018-07-05 05:14:26 -07:00
committed by android-build-merger

View File

@@ -194,7 +194,7 @@ public class NetworkStatsFactory {
reader.finishLine(); reader.finishLine();
} }
} catch (NullPointerException|NumberFormatException e) { } catch (NullPointerException|NumberFormatException e) {
throw new ProtocolException("problem parsing stats", e); throw protocolExceptionWithCause("problem parsing stats", e);
} finally { } finally {
IoUtils.closeQuietly(reader); IoUtils.closeQuietly(reader);
StrictMode.setThreadPolicy(savedPolicy); StrictMode.setThreadPolicy(savedPolicy);
@@ -244,7 +244,7 @@ public class NetworkStatsFactory {
reader.finishLine(); reader.finishLine();
} }
} catch (NullPointerException|NumberFormatException e) { } catch (NullPointerException|NumberFormatException e) {
throw new ProtocolException("problem parsing stats", e); throw protocolExceptionWithCause("problem parsing stats", e);
} finally { } finally {
IoUtils.closeQuietly(reader); IoUtils.closeQuietly(reader);
StrictMode.setThreadPolicy(savedPolicy); StrictMode.setThreadPolicy(savedPolicy);
@@ -341,7 +341,7 @@ public class NetworkStatsFactory {
reader.finishLine(); reader.finishLine();
} }
} catch (NullPointerException|NumberFormatException e) { } catch (NullPointerException|NumberFormatException e) {
throw new ProtocolException("problem parsing idx " + idx, e); throw protocolExceptionWithCause("problem parsing idx " + idx, e);
} finally { } finally {
IoUtils.closeQuietly(reader); IoUtils.closeQuietly(reader);
StrictMode.setThreadPolicy(savedPolicy); StrictMode.setThreadPolicy(savedPolicy);
@@ -378,4 +378,10 @@ public class NetworkStatsFactory {
@VisibleForTesting @VisibleForTesting
public static native int nativeReadNetworkStatsDev(NetworkStats stats); public static native int nativeReadNetworkStatsDev(NetworkStats stats);
private static ProtocolException protocolExceptionWithCause(String message, Throwable cause) {
ProtocolException pe = new ProtocolException(message);
pe.initCause(cause);
return pe;
}
} }