From 4baa4f67e7b6a1d0b64868e16f11ae8e4878fcf6 Mon Sep 17 00:00:00 2001 From: Yu-Han Yang Date: Wed, 18 Jan 2023 17:02:14 +0000 Subject: Use deepToString for 2d arrays Bug: 259324783 Test: manual Change-Id: I030de60258f11ec6ab719fb7cb5d6118c1814594 --- location/java/android/location/GnssAntennaInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'location') diff --git a/location/java/android/location/GnssAntennaInfo.java b/location/java/android/location/GnssAntennaInfo.java index ce73be1ec11f..3558dd501d20 100644 --- a/location/java/android/location/GnssAntennaInfo.java +++ b/location/java/android/location/GnssAntennaInfo.java @@ -347,8 +347,8 @@ public final class GnssAntennaInfo implements Parcelable { @Override public String toString() { return "SphericalCorrections{" - + "Corrections=" + Arrays.toString(mCorrections) - + ", CorrectionUncertainties=" + Arrays.toString(mCorrectionUncertainties) + + "Corrections=" + Arrays.deepToString(mCorrections) + + ", CorrectionUncertainties=" + Arrays.deepToString(mCorrectionUncertainties) + ", DeltaTheta=" + getDeltaTheta() + ", DeltaPhi=" + getDeltaPhi() + '}'; -- cgit v1.2.3-59-g8ed1b