Skip to content

Commit

Permalink
Use URLClassLoader by default (#6571)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 15, 2022
1 parent b08b4f9 commit 62fbc3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/ClassicPluginStrategy.java
Original file line number Diff line number Diff line change
Expand Up @@ -717,5 +717,5 @@ protected URL findResource(String name) {
}

@SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "Accessible via System Groovy Scripts")
public static /* not final */ boolean useAntClassLoader = SystemProperties.getBoolean(ClassicPluginStrategy.class.getName() + ".useAntClassLoader", true);
public static /* not final */ boolean useAntClassLoader = SystemProperties.getBoolean(ClassicPluginStrategy.class.getName() + ".useAntClassLoader");
}

0 comments on commit 62fbc3a

Please sign in to comment.