fix: add public modifier to gameDir/gameJsonPath for GameStore interface
Build & Deploy / build-and-deploy (push) Failing after 26s
Build & Deploy / build-and-deploy (push) Failing after 26s
This commit is contained in:
@@ -55,11 +55,11 @@ public class GameService implements GameStore {
|
|||||||
|
|
||||||
// ─── Game Directory Helpers ──────────────────────────────────
|
// ─── Game Directory Helpers ──────────────────────────────────
|
||||||
|
|
||||||
Path gameDir(String id) {
|
public Path gameDir(String id) {
|
||||||
return gamesDir.resolve(id);
|
return gamesDir.resolve(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
Path gameJsonPath(String id) {
|
public Path gameJsonPath(String id) {
|
||||||
return gameDir(id).resolve("game.json");
|
return gameDir(id).resolve("game.json");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user