-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
34 additions
and
40 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...se/day24/src/main/java/M/Instruction.java → .../src/main/java/submarine/Instruction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
exercise/day24/src/main/java/M/Position.java → ...y24/src/main/java/submarine/Position.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cise/day24/src/main/java/M/Submarine.java → ...24/src/main/java/submarine/Submarine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package M; | ||
package submarine; | ||
|
||
import java.util.List; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...cise/day24/src/test/java/M/FileUtils.java → ...24/src/test/java/submarine/FileUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package M; | ||
package submarine; | ||
|
||
import java.io.IOException; | ||
import java.net.URISyntaxException; | ||
|
2 changes: 1 addition & 1 deletion
2
...day24/src/test/java/M/SubmarineTests.java → ...c/test/java/submarine/SubmarineTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package M; | ||
package submarine; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
|
31 changes: 14 additions & 17 deletions
31
...ay23/src/main/java/org/craftedsw/tripservicekata/exception/CollaboratorCallException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,22 @@ | ||
package org.craftedsw.tripservicekata.exception; | ||
|
||
public class CollaboratorCallException extends RuntimeException { | ||
private static final long serialVersionUID = -4584041339906109902L; | ||
|
||
private static final long serialVersionUID = -4584041339906109902L; | ||
public CollaboratorCallException() { | ||
super(); | ||
} | ||
|
||
public CollaboratorCallException() { | ||
super(); | ||
} | ||
public CollaboratorCallException(String message, | ||
Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public CollaboratorCallException(String message, | ||
Throwable cause) { | ||
super(message, cause); | ||
} | ||
public CollaboratorCallException(String message) { | ||
super(message); | ||
} | ||
|
||
public CollaboratorCallException(String message) { | ||
super(message); | ||
} | ||
|
||
public CollaboratorCallException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
|
||
public CollaboratorCallException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
5 changes: 2 additions & 3 deletions
5
...day23/src/main/java/org/craftedsw/tripservicekata/exception/UserNotLoggedInException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package org.craftedsw.tripservicekata.exception; | ||
|
||
public class UserNotLoggedInException extends RuntimeException { | ||
private static final long serialVersionUID = 8959479918185637340L; | ||
|
||
private static final long serialVersionUID = 8959479918185637340L; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters