Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove useless @SuppressWarnings("unused") #34032

Merged
merged 1 commit into from
Dec 12, 2024
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
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
Loading