game: Remove redundant modifier for enum constructor

This commit is contained in:
sdburns1998
2019-07-08 17:08:55 +02:00
parent dbf76ce8de
commit 115f219620

View File

@@ -23,7 +23,7 @@ public enum Sound
private String filePath;
private int id;
private Sound(int id, String filePath)
Sound(int id, String filePath)
{
this.id = id;
this.filePath = filePath;