summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl/OmtpEvents.java
diff options
context:
space:
mode:
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;
}
}