-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure the project, process feedback by Sheikah in #142
- Loading branch information
Showing
24 changed files
with
240 additions
and
251 deletions.
There are no files selected for viewing
9 changes: 0 additions & 9 deletions
9
faf-commons-data/src/main/java/com/faforever/commons/replay/ReplayBinaryFormat.java
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
faf-commons-data/src/main/java/com/faforever/commons/replay/ReplayContainer.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,7 @@ | ||
package com.faforever.commons.replay; | ||
|
||
import com.faforever.commons.replay.body.Body; | ||
import com.faforever.commons.replay.header.Header; | ||
import com.faforever.commons.replay.body.ReplayBody; | ||
import com.faforever.commons.replay.header.ReplayHeader; | ||
|
||
public record ReplayContainer(ReplayMetadata metadata, Header header, Body body, byte[] bytes) { | ||
public record ReplayContainer(ReplayMetadata metadata, ReplayHeader header, ReplayBody body, byte[] bytes) { | ||
} |
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
8 changes: 0 additions & 8 deletions
8
faf-commons-data/src/main/java/com/faforever/commons/replay/body/Body.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
faf-commons-data/src/main/java/com/faforever/commons/replay/body/ReplayBody.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.faforever.commons.replay.body; | ||
|
||
import java.util.List; | ||
|
||
public record ReplayBody(List<ReplayBodyEvent> events) { | ||
} |
Oops, something went wrong.