Skip to content

Commit

Permalink
make member var private
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffz committed Mar 17, 2024
1 parent a23468a commit 60b8d39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class StandardVersioning {
public static final String VERSION = "4.2.0";

public static final List<String> supportedVersions = Arrays.asList("", "4.0.0", "4.1.0", VERSION);
private static final List<String> supportedVersions = Arrays.asList("", "4.0.0", "4.1.0", VERSION);

public static boolean checkVersionSupported(String version) {
return supportedVersions.contains(version);
Expand Down

0 comments on commit 60b8d39

Please sign in to comment.