[DEV] remove deprecated API
This commit is contained in:
parent
70dae9d861
commit
c8ff65615f
@ -15,14 +15,6 @@ public class IntrospectionObject {
|
||||
private final Map<String, Object> properties = new HashMap<>();
|
||||
private final Map<String, List<Object>> nodes = new HashMap<>();
|
||||
|
||||
/**
|
||||
* Create and empty element that have nothing. this is for the root node ==> not capable of knowing if only one element is created or many ...
|
||||
*/
|
||||
public IntrospectionObject() {
|
||||
this.modelInterface = null;
|
||||
this.data = new ArrayList<>();
|
||||
}
|
||||
|
||||
public IntrospectionObject(final IntrospectionModel dataInterface) {
|
||||
this.modelInterface = dataInterface;
|
||||
}
|
||||
@ -41,11 +33,6 @@ public class IntrospectionObject {
|
||||
}
|
||||
this.properties.put(propertyName, propertyValue);
|
||||
}
|
||||
@Deprecated
|
||||
public void setProperty(final String propertyName, final String propertyValue, final CacheIntrospectionModel cacheModel) throws Exception {
|
||||
Object value = this.modelInterface.getValue(propertyName, propertyValue);
|
||||
putProperty(propertyName, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Detect a subNode, and ask the type of the node at the parent Class
|
||||
|
Loading…
x
Reference in New Issue
Block a user