Add missing semicolon.

This commit is contained in:
Matt Low 2018-11-22 18:55:15 +04:00
parent 9e44b1e93f
commit 451ca13566

View File

@ -15,7 +15,7 @@ public class GridLevelLoader implements LevelLoader {
private int playCount = 0;
public GridLevelLoader(PlayState state) {
this(state, false, false)
this(state, false, false);
}
public GridLevelLoader(PlayState state, boolean randomShape, boolean randomType) {