cmsdk: remove 'hide clock' option from clock position tunable

* Hiding the clock is now possible using the icon blacklist.
* Since the the hide option in the clock position tunable
  isn't currently implemented let's remove it

Change-Id: I2412051289a922dfc72cdf266b47f32cf7aaa31a
This commit is contained in:
Hendrik Hagendorn
2016-12-13 18:32:16 +01:00
parent 8f7ef5dfea
commit 5bb06dccb5
3 changed files with 36 additions and 16 deletions

View File

@@ -834,19 +834,17 @@ public final class CMSettings {
sBooleanValidator;
/**
* Whether to hide the clock, show it in the right or left
* position or show it in the center
* 0: don't show the clock
* 1: show the clock in the right position (LTR)
* 2: show the clock in the center
* 3: show the clock in the left position (LTR)
* default: 1
* Whether to show the clock in the right or left position or show it in the center
* 0: show the clock in the right position (LTR)
* 1: show the clock in the center
* 2: show the clock in the left position (LTR)
* default: 0
*/
public static final String STATUS_BAR_CLOCK = "status_bar_clock";
/** @hide */
public static final Validator STATUS_BAR_CLOCK_VALIDATOR =
new InclusiveIntegerRangeValidator(0, 3);
new InclusiveIntegerRangeValidator(0, 2);
/**
* Whether the notification light will be allowed when in zen mode during downtime