Skip to content

Commit

Permalink
test: warning 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
swonny committed Apr 30, 2024
1 parent 486e25d commit 1fa30b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ public enum SendMessageStatus {

SUCCESS,
DISCONNECTED,
FORBIDDEN,
;
FORBIDDEN
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public enum ChattingType {
PING("ping"),
;

private String value;
private final String value;

ChattingType(final String value) {
this.value = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;

@SuppressWarnings("NonAsciiCharacters")
class ChattingTypeTest {

@Test
Expand Down

0 comments on commit 1fa30b4

Please sign in to comment.