Getting rid of a couple of compiler warnings.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7165 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
PSp..om 2011-04-03 03:09:08 +00:00
parent 109c6b4ef7
commit 8858ccf2ef

View File

@ -270,8 +270,8 @@ public class TestChooser extends JDialog {
final Method settingMethod = clazz.getMethod("setShowSettings", boolean.class);
settingMethod.invoke(app, showSetting);
}
final Method mainMethod = clazz.getMethod("start", null);
mainMethod.invoke(app, null);
final Method mainMethod = clazz.getMethod("start");
mainMethod.invoke(app);
Field contextField = Application.class.getDeclaredField("context");
contextField.setAccessible(true);
JmeContext context = null;