Fix next finding.

pull/2281/head
Kim Kulling 2018-12-23 11:58:48 +01:00
parent 3087ebb93a
commit f73dd52956
1 changed files with 6 additions and 7 deletions

View File

@ -47,6 +47,11 @@ 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>
@ -143,11 +148,5 @@ public enum AiSceneFlag {
*/ */
private AiSceneFlag(int rawValue) { private AiSceneFlag(int rawValue) {
m_rawValue = rawValue; m_rawValue = rawValue;
} }
/**
* The mapped c/c++ integer enum value.
*/
private final int m_rawValue;
} }