fix NPE in Match Strategy generation (not sure if this is correct)
authorAndreas Müller <a.mueller@bgbm.org>
Wed, 22 Apr 2015 14:11:33 +0000 (14:11 +0000)
committerAndreas Müller <a.mueller@bgbm.org>
Wed, 22 Apr 2015 14:11:33 +0000 (14:11 +0000)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/parser/MatchStrategyConfigurator.java

index b0f1b1e98229c95a0145eed33bec76c48d1216bb..63407272bdb6621aebb744ad8bf736605223c2fd 100644 (file)
@@ -44,7 +44,7 @@ public class MatchStrategyConfigurator {
         * @return a {@link eu.etaxonomy.cdm.strategy.match.IMatchStrategy} object.
         */
        public static IMatchStrategy TeamOrPersonMatchStrategy() throws MatchException{
-               return null;// PreferencesUtil.getMatchStrategy(TeamOrPersonBase.class);
+               return PreferencesUtil.getMatchStrategy(TeamOrPersonBase.class);
        } 
        
        /**