From c8ff65615f88fc7e5b625374533a13aab18a8831 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Thu, 8 Jul 2021 14:20:35 +0200 Subject: [PATCH] [DEV] remove deprecated API --- .../atriasoft/exml/builder/IntrospectionObject.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/org/atriasoft/exml/builder/IntrospectionObject.java b/src/org/atriasoft/exml/builder/IntrospectionObject.java index 73bc4f0..cfef744 100644 --- a/src/org/atriasoft/exml/builder/IntrospectionObject.java +++ b/src/org/atriasoft/exml/builder/IntrospectionObject.java @@ -15,14 +15,6 @@ public class IntrospectionObject { private final Map properties = new HashMap<>(); private final Map> 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