Future-proofing JmeVersion now in case we want to

do something smarter in the future.


git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10834 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
PSp..om 2013-10-17 16:52:59 +00:00
parent 16428d82aa
commit cc2d4cd83f
2 changed files with 6 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public abstract class JmeSystemDelegate {
}
public String getFullName() {
return JmeVersion.FULL_NAME;
return JmeVersion.getFullName();
}
public InputStream getResourceAsStream(String name) {

View File

@ -32,5 +32,9 @@
package com.jme3.system;
public class JmeVersion {
public static final String FULL_NAME = "jMonkeyEngine 3.x";
private static final String FULL_NAME = "jMonkeyEngine 3.x";
public static String getFullName() {
return FULL_NAME;
}
}