diff options
author | 2023-01-18 17:02:14 +0000 | |
---|---|---|
committer | 2023-01-18 17:03:05 +0000 | |
commit | 4baa4f67e7b6a1d0b64868e16f11ae8e4878fcf6 (patch) | |
tree | f5653cb0b2a02be3ba85cdfe493a68f876b9b4b5 /location | |
parent | a84a513c9a36e23c00845f0e9537d42ebb927dea (diff) |
Use deepToString for 2d arrays
Bug: 259324783
Test: manual
Change-Id: I030de60258f11ec6ab719fb7cb5d6118c1814594
Diffstat (limited to 'location')
-rw-r--r-- | location/java/android/location/GnssAntennaInfo.java | 4 |
1 files changed, 2 insertions, 2 deletions
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() + '}'; |