Fix next finding.

pull/2281/head
Kim Kulling 2018-12-23 12:01:08 +01:00
parent f73dd52956
commit e9d1330edd
2 changed files with 32 additions and 35 deletions

View File

@ -139,10 +139,8 @@ public class AiClassLoaderIOSystem implements AiIOSystem<AiInputStreamIOStream>
{ {
return false; return false;
} }
else
{ return true;
return true;
}
} }

View File

@ -328,7 +328,36 @@ public final class AiMaterial {
* properties easily. * properties easily.
*/ */
public static final class Property { public static final class Property {
/**
* Key.
*/
private final String m_key;
/** /**
* Semantic.
*/
private final int m_semantic;
/**
* Index.
*/
private final int m_index;
/**
* Type.
*/
private final PropertyType m_type;
/**
* Data.
*/
private final Object m_data;
/**
* Constructor. * Constructor.
* *
* @param key * @param key
@ -428,39 +457,9 @@ public final class AiMaterial {
* *
* @return the data * @return the data
*/ */
Object getData() { private Object getData() {
return m_data; return m_data;
} }
/**
* Key.
*/
private final String m_key;
/**
* Semantic.
*/
private final int m_semantic;
/**
* Index.
*/
private final int m_index;
/**
* Type.
*/
private final PropertyType m_type;
/**
* Data.
*/
private final Object m_data;
} }