Fix next finding.
parent
f73dd52956
commit
e9d1330edd
|
@ -139,10 +139,8 @@ public class AiClassLoaderIOSystem implements AiIOSystem<AiInputStreamIOStream>
|
|||
{
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -328,7 +328,36 @@ public final class AiMaterial {
|
|||
* properties easily.
|
||||
*/
|
||||
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.
|
||||
*
|
||||
* @param key
|
||||
|
@ -428,39 +457,9 @@ public final class AiMaterial {
|
|||
*
|
||||
* @return the data
|
||||
*/
|
||||
Object getData() {
|
||||
private Object getData() {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue