Repository: incubator-juneau Updated Branches: refs/heads/master eac396dba -> e4b601d71
Remove unused constructor. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/e4b601d7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/e4b601d7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/e4b601d7 Branch: refs/heads/master Commit: e4b601d71edda3c14c3b0b29d8f6ed094e581493 Parents: eac396d Author: jamesbognar <[email protected]> Authored: Wed Sep 7 21:32:03 2016 -0400 Committer: jamesbognar <[email protected]> Committed: Wed Sep 7 21:32:03 2016 -0400 ---------------------------------------------------------------------- .../src/main/java/org/apache/juneau/TypeDictionary.java | 12 ------------ 1 file changed, 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/e4b601d7/juneau-core/src/main/java/org/apache/juneau/TypeDictionary.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/TypeDictionary.java b/juneau-core/src/main/java/org/apache/juneau/TypeDictionary.java index 45488ad..6c31726 100644 --- a/juneau-core/src/main/java/org/apache/juneau/TypeDictionary.java +++ b/juneau-core/src/main/java/org/apache/juneau/TypeDictionary.java @@ -56,19 +56,7 @@ public class TypeDictionary { * </ul> */ public TypeDictionary(Class<?>...classes) { - this(null, classes); - } - - /** - * Constructor with optional copy-from dictionary. - * - * @param copyFrom The dictionary to initialize the contents of this dictionary with. - * @param classes List of classes to add to this dictionary. - */ - public TypeDictionary(TypeDictionary copyFrom, Class<?>...classes) { Map<String,Class<?>> m = new HashMap<String,Class<?>>(); - if (copyFrom != null) - m.putAll(copyFrom.map); for (Class<?> c : classes) { if (c != null) { if (ClassUtils.isParentClass(TypeDictionary.class, c)) {
