summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl/OmtpEvents.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-12-28 02:35:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-12-28 02:35:07 +0000
commit281998c825ad48d842bb653e2f462719fdb0c1d9 (patch)
treebc8bfcce809257b3ddbb423a9808082292b9f6a3 /java/com/android/voicemail/impl/OmtpEvents.java
parentfc81a030a7b4f6d4a497f71aed593d398795e7da (diff)
parent183cb71663320f16149d83eeebaff7795a4b55f2 (diff)
Merge "Remove field prefixes."
Diffstat (limited to 'java/com/android/voicemail/impl/OmtpEvents.java')
-rw-r--r--java/com/android/voicemail/impl/OmtpEvents.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/java/com/android/voicemail/impl/OmtpEvents.java b/java/com/android/voicemail/impl/OmtpEvents.java
index 6807edcf0..ddca80f1a 100644
--- a/java/com/android/voicemail/impl/OmtpEvents.java
+++ b/java/com/android/voicemail/impl/OmtpEvents.java
@@ -123,30 +123,30 @@ public enum OmtpEvents {
public static final int OTHER = 4;
}
- private final int mType;
- private final boolean mIsSuccess;
+ private final int type;
+ private final boolean isSuccess;
OmtpEvents(int type, boolean isSuccess) {
- mType = type;
- mIsSuccess = isSuccess;
+ this.type = type;
+ this.isSuccess = isSuccess;
}
OmtpEvents(int type) {
- mType = type;
- mIsSuccess = false;
+ this.type = type;
+ isSuccess = false;
}
OmtpEvents() {
- mType = Type.OTHER;
- mIsSuccess = false;
+ type = Type.OTHER;
+ isSuccess = false;
}
@Type.Values
public int getType() {
- return mType;
+ return type;
}
public boolean isSuccess() {
- return mIsSuccess;
+ return isSuccess;
}
}