summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2011-12-20 11:00:51 -0800
committerConley Owens <cco3@android.com>2011-12-20 11:01:26 -0800
commit8168ae298fbc539866aec44a48e3e382e7cae41e (patch)
tree425c0cd4c5bd956cf8b086512334d002e4df706a /src
parentdcd90e3a0607d8634733dd1971d72f3265732b47 (diff)
downloadandroid_packages_apps_Gello-8168ae298fbc539866aec44a48e3e382e7cae41e.tar.gz
android_packages_apps_Gello-8168ae298fbc539866aec44a48e3e382e7cae41e.tar.bz2
android_packages_apps_Gello-8168ae298fbc539866aec44a48e3e382e7cae41e.zip
Make static fields of WSF$Site package-private
This makes a little more sense since they are accessed outside of the class that they are defined in. In addition, this fixes errors created by proguard when building with OpenJDK. Change-Id: I41d9bbb687628140038eb517ea08517cee37e0c7
Diffstat (limited to 'src')
-rw-r--r--src/com/android/browser/preferences/WebsiteSettingsFragment.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/browser/preferences/WebsiteSettingsFragment.java b/src/com/android/browser/preferences/WebsiteSettingsFragment.java
index 92cc62f3..da06428f 100644
--- a/src/com/android/browser/preferences/WebsiteSettingsFragment.java
+++ b/src/com/android/browser/preferences/WebsiteSettingsFragment.java
@@ -75,10 +75,10 @@ public class WebsiteSettingsFragment extends ListFragment implements OnClickList
// They must be consecutive. To add a new feature, add a new FEATURE_XXX
// variable with value equal to the current value of FEATURE_COUNT, then
// increment FEATURE_COUNT.
- private final static int FEATURE_WEB_STORAGE = 0;
- private final static int FEATURE_GEOLOCATION = 1;
+ final static int FEATURE_WEB_STORAGE = 0;
+ final static int FEATURE_GEOLOCATION = 1;
// The number of features available.
- private final static int FEATURE_COUNT = 2;
+ final static int FEATURE_COUNT = 2;
public Site(String origin) {
mOrigin = origin;