Skip to content

Commit

Permalink
🔇 silent changes: remove suppress warnings #2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Dec 6, 2024
1 parent 410e6b7 commit ebd9c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/main/groovy/org/redis4j/common/Redis4j.java
Original file line number Diff line number Diff line change
Expand Up @@ -2077,7 +2077,7 @@ public static Map<String, String> defaultKeysWk() {
* @return a wrapped HTTP response containing the retrieved data, or an error response if the key is empty,
* Redis connection fails, or the key type is unsupported.
*/
@SuppressWarnings({"SpellCheckingInspection", "EnhancedSwitchMigration"})
@SuppressWarnings({"SpellCheckingInspection"})
public static WrapResponse<?> wget(String key) {
if (String4j.isEmpty(key)) {
return new HttpWrapBuilder<>().badRequest("key is required").requestId(getCurrentSessionId()).build();
Expand Down

0 comments on commit ebd9c79

Please sign in to comment.