Skip to content

Commit

Permalink
refactor : package 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
fucct committed Apr 7, 2020
1 parent 3f688e4 commit f62a683
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/chess/controller/dto/ResponseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import chess.domain.player.Player;
import chess.domain.position.Position;
import chess.domain.result.Status;
import chess.domain.status.Status;

import java.util.Map;
import java.util.Objects;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/chess/domain/ChessGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import chess.domain.board.DefaultBoardInitializer;
import chess.domain.player.Player;
import chess.domain.position.Position;
import chess.domain.result.Status;
import chess.domain.status.Status;

import java.util.Map;

Expand Down Expand Up @@ -51,7 +51,7 @@ public Map<Position, String> getBoard() {
}

public Status getStatus() {
return getStatus();
return status;
}

public boolean isEnd() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package chess.domain.result;
package chess.domain.status;

import chess.domain.board.Board;
import chess.domain.player.Player;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
<body>
Hello World!!
</body>
</html
</html>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package chess.domain.result;
package chess.domain.status;

import chess.domain.board.Board;
import chess.domain.board.DefaultBoardInitializer;
Expand Down

0 comments on commit f62a683

Please sign in to comment.