Skip to content

Commit

Permalink
Remove suppressions of false 'UnnecessarilyQualifiedStaticUsage' insp…
Browse files Browse the repository at this point in the history
…ections - no longer needed with IDEA 2024.2
  • Loading branch information
bwRavencl committed Aug 8, 2024
1 parent f741d2e commit 9d138a8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ private void activateMode(final Input input, final Profile profile) {

profile.getModeByUuid(modeUuid).ifPresent(newMode -> {
IAxisToLongPressAction.onModeActivated(activeMode, newMode);
// noinspection UnnecessarilyQualifiedStaticUsage
IButtonToAction.onModeActivated(activeMode, newMode);

profile.setActiveMode(input, newMode);
Expand Down Expand Up @@ -140,7 +139,6 @@ private void deactivateMode(final Input input, final Profile profile) {
}

IAxisToLongPressAction.onModeDeactivated(activeMode);
// noinspection UnnecessarilyQualifiedStaticUsage
IButtonToAction.onModeDeactivated(activeMode);

profile.setActiveMode(input, previousMode);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public String getDescription(final Input input) {
return description;
}

// noinspection UnnecessarilyQualifiedStaticUsage
return IAction.getDefaultDescription(this);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public void doAction(final Input input, final int component, final Number value)

@Override
public String getDescription(final Input input) {
// noinspection UnnecessarilyQualifiedStaticUsage
return IAction.getDefaultDescription(this);
}
}

0 comments on commit 9d138a8

Please sign in to comment.