Change access of getData() to package-private for access in JaiDebug.
Move private field to fix compile error.pull/2295/head
parent
455c4ceea4
commit
e06b1d0de2
|
@ -457,7 +457,7 @@ public final class AiMaterial {
|
||||||
*
|
*
|
||||||
* @return the data
|
* @return the data
|
||||||
*/
|
*/
|
||||||
private Object getData() {
|
Object getData() {
|
||||||
return m_data;
|
return m_data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,11 +47,6 @@ import java.util.Set;
|
||||||
* Status flags for {@link AiScene}s.
|
* Status flags for {@link AiScene}s.
|
||||||
*/
|
*/
|
||||||
public enum AiSceneFlag {
|
public enum AiSceneFlag {
|
||||||
/**
|
|
||||||
* The mapped c/c++ integer enum value.
|
|
||||||
*/
|
|
||||||
private final int m_rawValue;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specifies that the scene data structure that was imported is not
|
* Specifies that the scene data structure that was imported is not
|
||||||
* complete.<p>
|
* complete.<p>
|
||||||
|
@ -120,6 +115,10 @@ public enum AiSceneFlag {
|
||||||
*/
|
*/
|
||||||
TERRAIN(0x10);
|
TERRAIN(0x10);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The mapped c/c++ integer enum value.
|
||||||
|
*/
|
||||||
|
private final int m_rawValue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility method for converting from c/c++ based integer enums to java
|
* Utility method for converting from c/c++ based integer enums to java
|
||||||
|
|
Loading…
Reference in New Issue