Skip to content

Commit

Permalink
[JENKINS-21486] Reduce visibility of flag to private
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlatombe committed Apr 1, 2016
1 parent 91e8400 commit f4e9cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/PluginWrapper.java
Expand Up @@ -91,7 +91,7 @@ public class PluginWrapper implements Comparable<PluginWrapper>, ModelObject {
* A plugin won't be loaded unless his declared dependencies are present and match the required minimal version.
* This can be set to false to disable the version check (legacy behaviour)
*/
public static final boolean ENABLE_PLUGIN_DEPENDENCIES_VERSION_CHECK = Boolean.parseBoolean(System.getProperty(PluginWrapper.class.getName()+"." + "dependenciesVersionCheck.enabled", "true"));
private static final boolean ENABLE_PLUGIN_DEPENDENCIES_VERSION_CHECK = Boolean.parseBoolean(System.getProperty(PluginWrapper.class.getName()+"." + "dependenciesVersionCheck.enabled", "true"));

/**
* {@link PluginManager} to which this belongs to.
Expand Down

0 comments on commit f4e9cb4

Please sign in to comment.