Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d251a117 authored by Yu-Han Yang's avatar Yu-Han Yang Committed by Android (Google) Code Review
Browse files

Merge "Use deepToString for 2d arrays"

parents f86a917f 4baa4f67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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()
                    + '}';