game: Remove redundant modifier for enum constructor
This commit is contained in:
@@ -23,7 +23,7 @@ public enum Sound
|
|||||||
private String filePath;
|
private String filePath;
|
||||||
private int id;
|
private int id;
|
||||||
|
|
||||||
private Sound(int id, String filePath)
|
Sound(int id, String filePath)
|
||||||
{
|
{
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.filePath = filePath;
|
this.filePath = filePath;
|
||||||
|
|||||||
Reference in New Issue
Block a user