microsoft/cordova-samples

Explicit Scoping

Opened this issue · 0 comments

Use explicit scoping instead of the default package private level.

34
35 public class Geolocation extends CordovaPlugin {
36
37     String TAG = "GeolocationPlugin";
38     CallbackContext context;
39

Why is this an issue?

Use explicit scoping instead of the default package private level. What this means it that you should do is make all the fields within your classes private to enforce better encapsulation.

Ex:

public class Foo {
    /* private missing */ Object bar;
}

Source

Related code pattern

Enforces the use of explicit scoping

Use explicit scoping instead of the default package private level.