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:
parent
16428d82aa
commit
cc2d4cd83f
@ -91,7 +91,7 @@ public abstract class JmeSystemDelegate {
|
||||
}
|
||||
|
||||
public String getFullName() {
|
||||
return JmeVersion.FULL_NAME;
|
||||
return JmeVersion.getFullName();
|
||||
}
|
||||
|
||||
public InputStream getResourceAsStream(String name) {
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user