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;
}
else
{
return true;
}
}

View File

@ -328,6 +328,35 @@ 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.
*
@ -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;
}