From: <dfl...@us...> - 2013-09-09 10:19:00
|
Revision: 4101 http://sourceforge.net/p/dl-learner/code/4101 Author: dfleischhacker Date: 2013-09-09 10:18:57 +0000 (Mon, 09 Sep 2013) Log Message: ----------- Remove constructor defaulting to DummyNameGenerator Modified Paths: -------------- trunk/components-core/src/main/java/org/dllearner/algorithms/isle/index/SimpleEntityCandidatesTrie.java Modified: trunk/components-core/src/main/java/org/dllearner/algorithms/isle/index/SimpleEntityCandidatesTrie.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/algorithms/isle/index/SimpleEntityCandidatesTrie.java 2013-09-09 10:12:56 UTC (rev 4100) +++ trunk/components-core/src/main/java/org/dllearner/algorithms/isle/index/SimpleEntityCandidatesTrie.java 2013-09-09 10:18:57 UTC (rev 4101) @@ -13,16 +13,16 @@ PrefixTrie<Set<Entity>> trie; EntityTextRetriever entityTextRetriever; - /** - * Initialize the trie with strings from the provided ontology using a no-op name generator, i.e., only the - * actual ontology strings are added and no expansion is done. - * - * @param entityTextRetriever the text retriever to use - * @param ontology the ontology to get strings from - */ - public SimpleEntityCandidatesTrie(EntityTextRetriever entityTextRetriever, OWLOntology ontology) { - this(entityTextRetriever, ontology, new DummyNameGenerator()); - } +// /** +// * Initialize the trie with strings from the provided ontology using a no-op name generator, i.e., only the +// * actual ontology strings are added and no expansion is done. +// * +// * @param entityTextRetriever the text retriever to use +// * @param ontology the ontology to get strings from +// */ +// public SimpleEntityCandidatesTrie(EntityTextRetriever entityTextRetriever, OWLOntology ontology) { +// this(entityTextRetriever, ontology, new DummyNameGenerator()); +// } /** * Initialize the trie with strings from the provided ontology and use the given entity name generator This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |