diff options
| author | Eric Erfanian <erfanian@google.com> | 2018-02-26 08:21:09 -0800 |
|---|---|---|
| committer | Eric Erfanian <erfanian@google.com> | 2018-02-28 10:51:39 -0800 |
| commit | 1f68a6a489db554abafa947854cdc1f6cf80f9ca (patch) | |
| tree | 2964a152d9868625a45530055632a22b44160cdb /core/java/android | |
| parent | 6d9d717ab71c7d5c5a70878339cf2283affdb2ac (diff) | |
Update the RTT features constant.
The effect of this change is to properly set
the RTT constant to 32.
Merged-In: I828788e8d950687149d9094d0631171e2fd7212f
Bug: 63934304
Test: TreeHugger
Change-Id: I2557fbc617c003abdd429fa7d5ed237d895b2dc5
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/CallLog.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/provider/CallLog.java b/core/java/android/provider/CallLog.java index 60df467bc20f..70de09ebe85f 100644 --- a/core/java/android/provider/CallLog.java +++ b/core/java/android/provider/CallLog.java @@ -223,14 +223,14 @@ public class CallLog { /** Call was WIFI call. */ public static final int FEATURES_WIFI = 1 << 3; - /** Call was on RTT at some point */ - public static final int FEATURES_RTT = 1 << 4; - /** * Indicates the call underwent Assisted Dialing. * @hide */ - public static final Integer FEATURES_ASSISTED_DIALING_USED = 0x10; + public static final int FEATURES_ASSISTED_DIALING_USED = 1 << 4; + + /** Call was on RTT at some point */ + public static final int FEATURES_RTT = 1 << 5; /** * The phone number as the user entered it. |
