Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
frameworks_opt_telephony
Commits
228824f6
Commit
228824f6
authored
9 years ago
by
Anthony Lee
Browse files
Options
Download
Email Patches
Plain Diff
Don't print PII
Bug: 22907228 Change-Id: I8a9926f5374ad4dc15c993dcfcc039852acdfb0f
parent
3f7b3ae9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/java/com/android/internal/telephony/uicc/IccRecords.java
src/java/com/android/internal/telephony/uicc/IccRecords.java
+7
-1
No files found.
src/java/com/android/internal/telephony/uicc/IccRecords.java
View file @
228824f6
...
...
@@ -25,6 +25,8 @@ import android.os.RegistrantList;
import
android.telephony.Rlog
;
import
android.telephony.TelephonyManager
;
import
android.text.TextUtils
;
import
com.android.internal.telephony.CommandsInterface
;
import
com.android.internal.telephony.uicc.IccCardApplicationStatus.AppState
;
...
...
@@ -713,7 +715,11 @@ public abstract class IccRecords extends Handler implements IccConstants {
pw
.
println
(
" mRecordsToLoad="
+
mRecordsToLoad
);
pw
.
println
(
" mRdnCache="
+
mAdnCache
);
pw
.
println
(
" iccid="
+
mIccId
);
pw
.
println
(
" mMsisdn="
+
mMsisdn
);
if
(
TextUtils
.
isEmpty
(
mMsisdn
))
{
pw
.
println
(
" mMsisdn=null"
);
}
else
{
pw
.
println
(
" mMsisdn="
+
(
VDBG
?
mMsisdn
:
"XXX"
));
}
pw
.
println
(
" mMsisdnTag="
+
mMsisdnTag
);
pw
.
println
(
" mVoiceMailNum="
+
mVoiceMailNum
);
pw
.
println
(
" mVoiceMailTag="
+
mVoiceMailTag
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment