Skip to content

Commit

Permalink
refactor: 클래스 맨 윗 줄 줄바꿈 여부 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
deepredk committed Oct 17, 2023
1 parent 655f8bf commit 49d51a9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ public class HitTrackerApplication {
public static void main(String[] args) {
SpringApplication.run(HitTrackerApplication.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ public static BaseResponseBody error(String errorMessage) {
}

enum Status {

SUCCESS, ERROR
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

@Getter
public class UrlHitInfoDto {

private String url;
private int todayHit;
private int totalHit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ class HitTrackerApplicationTests {
@Test
void contextLoads() {
}

}

0 comments on commit 49d51a9

Please sign in to comment.