summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl/OmtpEvents.java
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2017-12-27 17:02:37 -0800
committerCopybara-Service <copybara-piper@google.com>2017-12-27 17:03:47 -0800
commit183cb71663320f16149d83eeebaff7795a4b55f2 (patch)
treebc8bfcce809257b3ddbb423a9808082292b9f6a3 /java/com/android/voicemail/impl/OmtpEvents.java
parentfc81a030a7b4f6d4a497f71aed593d398795e7da (diff)
Remove field prefixes.
Test: Existing tests PiperOrigin-RevId: 180230450 Change-Id: I0b2589cfeeaef81e42a04efa48af24b4e4d0e95f
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;
}
}