Skip to content

Commit

Permalink
Remove useless @SuppressWarnings("unused") (#34032)
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu authored Dec 12, 2024
1 parent 4c03a80 commit ec5925c
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
/**
* Cache evicted subscriber.
*/
@SuppressWarnings("unused")
public final class CacheEvictedSubscriber implements EventSubscriber {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
* Compute node state subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class ComputeNodeStateSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* Database data changed subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class DatabaseDataChangedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* Global rule configuration event subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class GlobalRuleConfigurationEventSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
* Listener assisted subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class ListenerAssistedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
/**
* Meta data changed subscriber.
*/
@SuppressWarnings("unused")
public final class MetaDataChangedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
* Process list changed subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class ProcessListChangedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* Properties event subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class PropertiesEventSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* Qualified data source subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public class QualifiedDataSourceSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* Rule item changed subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class RuleItemChangedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
/**
* State changed subscriber.
*/
@SuppressWarnings("unused")
public final class StateChangedSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* Storage unit event subscriber.
*/
@RequiredArgsConstructor
@SuppressWarnings("unused")
public final class StorageUnitEventSubscriber implements EventSubscriber {

private final ContextManager contextManager;
Expand Down

0 comments on commit ec5925c

Please sign in to comment.