diff options
author | Wu-cheng Li <wuchengli@google.com> | 2011-05-15 13:00:37 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2011-05-17 13:47:17 +0800 |
commit | 9e1fcfe35695fd1e71d6c86f28075ca356e5bad5 (patch) | |
tree | deddca3e5e31e5f04e66dc5ef2f5a5b20a8e3afd /src/com/android/camera/ui/IndicatorWheel.java | |
parent | 940b813c57c6c6eb66f55d968c9cb2b28e79b24b (diff) | |
download | LegacyCamera-9e1fcfe35695fd1e71d6c86f28075ca356e5bad5.zip LegacyCamera-9e1fcfe35695fd1e71d6c86f28075ca356e5bad5.tar.gz LegacyCamera-9e1fcfe35695fd1e71d6c86f28075ca356e5bad5.tar.bz2 |
Remove dead code and reduce visibility.
Change-Id: Icec126d3d83f3b158d284dd63dfed8452ffa2249
Diffstat (limited to 'src/com/android/camera/ui/IndicatorWheel.java')
-rw-r--r-- | src/com/android/camera/ui/IndicatorWheel.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/camera/ui/IndicatorWheel.java b/src/com/android/camera/ui/IndicatorWheel.java index df0ebbb..1a374da 100644 --- a/src/com/android/camera/ui/IndicatorWheel.java +++ b/src/com/android/camera/ui/IndicatorWheel.java @@ -214,7 +214,7 @@ public class IndicatorWheel extends ViewGroup implements invalidate(); } - public void removeIndicators() { + private void removeIndicators() { // Remove everything but the shutter button. int count = getChildCount(); if (count > 1) { @@ -374,7 +374,7 @@ public class IndicatorWheel extends ViewGroup implements } // Scene mode may override other camera settings (ex: flash mode). - public void overrideSettings(String key, String value) { + private void overrideSettings(String key, String value) { int count = getChildCount(); for (int j = 1; j < count; j++) { View v = getChildAt(j); @@ -427,7 +427,7 @@ public class IndicatorWheel extends ViewGroup implements } } - protected void addIndicator(Context context, IconListPreference pref) { + private void addIndicator(Context context, IconListPreference pref) { addView(new IndicatorButton(context, pref)); mIndicatorCount++; } |