Commit 663037ad by Sebastián Katzer

Declare static fields as protected instead of public

parent c3f66967
...@@ -48,10 +48,10 @@ import android.content.SharedPreferences.Editor; ...@@ -48,10 +48,10 @@ import android.content.SharedPreferences.Editor;
*/ */
public class LocalNotification extends CordovaPlugin { public class LocalNotification extends CordovaPlugin {
public final static String PLUGIN_NAME = "LocalNotification"; protected final static String PLUGIN_NAME = "LocalNotification";
public static CordovaWebView webView = null; protected static CordovaWebView webView = null;
public static Context context = null; protected static Context context = null;
@Override @Override
public void initialize (CordovaInterface cordova, CordovaWebView webView) { public void initialize (CordovaInterface cordova, CordovaWebView webView) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment