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

Commit 7900e4d7 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[Passpoint] Truncate IMSI from the SimCredential toString method"

parents 651cb0c6 91c3b5af
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -738,7 +738,16 @@ public final class Credential implements Parcelable {
        @Override
        public String toString() {
            StringBuilder builder = new StringBuilder();
            builder.append("IMSI: ").append(mImsi).append("\n");
            String imsi;
            if (mImsi != null) {
                if (mImsi.length() > 6 && mImsi.charAt(6) != '*') {
                    // Truncate the full IMSI from the log
                    imsi = mImsi.substring(0, 6) + "****";
                } else {
                    imsi = mImsi;
                }
                builder.append("IMSI: ").append(imsi).append("\n");
            }
            builder.append("EAPType: ").append(mEapType).append("\n");
            return builder.toString();
        }