Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Use explicit scoping #13

@rjbohinski

Description

@rjbohinski

Use explicit scoping instead of accidental usage of default package private level.

About 40 instances of this issue exist within the code.

Example:

//Images
Image frame;
Image binaryFrame;
Image testFrame;

This should be changed to one of the following depending on the required visibility. Listed in order from most visible to least visible.

//Images
public Image frame;
protected Image binaryFrame;
private Image testFrame;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions