Skip to content

Commit

Permalink
Update suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Oct 16, 2020
1 parent 5fcc47a commit 7cc2e1d
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,18 @@ public BuildScanBuildServerListener(
this.externalIntegration = externalIntegration;
}

@SuppressWarnings({"WeakerAccess", "unused"})
@SuppressWarnings("unused")
public void register() {
buildServer.addListener(this);

LOGGER.info(String.format("Registered %s. %s-%s", getClass().getSimpleName(), pluginDescriptor.getPluginName(), pluginDescriptor.getPluginVersion()));
}

@SuppressWarnings("unused")
public void unregister() {
buildServer.removeListener(this);
LOGGER.info(String.format("Unregistered %s. %s-%s", getClass().getSimpleName(), pluginDescriptor.getPluginName(), pluginDescriptor.getPluginVersion()));
}

@Override
public void buildFinished(@NotNull SRunningBuild build) {
if (buildScanDisplayArbiter.showBuildScanInfo(build)) {
Expand Down

0 comments on commit 7cc2e1d

Please sign in to comment.