Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>5.8</version>
<version>5.10</version>
<relativePath/>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,13 @@
* @author Kohsuke Kawaguchi
*/
public class PluginImpl extends Plugin {

@SuppressFBWarnings(value="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT", justification="the side effect is the permission is loaded")

@Override
public void start() throws Exception {
// this permission designates a wrong parent group, which introduces a classloading problem
// like HUDSON-4172.
//
// As a work around, force loading of this permission so that by the time we start loading ACLs,
// As a workaround, force loading of this permission so that by the time we start loading ACLs,
// we have this instance already registered, thereby avoiding a lookup.
DescriptorImpl.CREATE_RELEASE.toString();
}
Expand Down
Loading