v0.4.2: fixed a couple lint warnings/errors

This commit is contained in:
Evan Debenham
2016-09-02 23:01:05 -04:00
parent 5a2ffa29a7
commit 729b5a2f88
2 changed files with 5 additions and 4 deletions

View File

@@ -285,11 +285,12 @@ public class Game extends Activity implements GLSurfaceView.Renderer, View.OnTou
try {
requestedScene = sceneClass.newInstance();
switchScene();
} catch (InstantiationException | IllegalAccessException e) {
} catch (InstantiationException e){
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
update();