From 8168ae298fbc539866aec44a48e3e382e7cae41e Mon Sep 17 00:00:00 2001 From: Conley Owens Date: Tue, 20 Dec 2011 11:00:51 -0800 Subject: 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 --- src/com/android/browser/preferences/WebsiteSettingsFragment.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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; -- cgit v1.2.3