Skip to content

Commit

Permalink
Merge pull request #225 from twenty-three-23/feature/TT-281-fix-matter
Browse files Browse the repository at this point in the history
fix: 기타 자잘한 네이밍 및 sentence_content 타입변경
  • Loading branch information
ch8930 authored Jul 18, 2024
2 parents 2de3842 + 51e1569 commit bc83564
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/twentythree/peech/script/dto/NowStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ public enum NowStatus {
REALTIME, EXPECTEDTIME, REALANDEXPECTEDTIME;

public static NowStatus parse(String status) {
if (status.equals("RealTime")) {
if (status.equals("REALTIME")) {
return REALTIME;
} else if (status.equals("ExpectedTime")) {
} else if (status.equals("EXPECTEDTIME")) {
return EXPECTEDTIME;
} else if (status.equals("RealAndExpectedTime")) {
} else if (status.equals("REALANDEXPECTEDTIME")) {
return REALANDEXPECTEDTIME;
} else {
throw new IllegalArgumentException("유효하지 않은 상태입니다.");
Expand Down

0 comments on commit bc83564

Please sign in to comment.