Index: build.properties
===================================================================
--- build.properties	(revision 235)
+++ build.properties	(working copy)
@@ -13,7 +13,7 @@
 
 # the lowest JOSM version the curent plugin version is compatible with
 #
-josm.required.version=14153
+josm.required.version=14371
 
 # the full path to the JOSM jar against which this plugin is built
 #
Index: src/org/openstreetmap/josm/plugins/conflation/matcher/LevenshteinDistanceValueMatcher.java
===================================================================
--- src/org/openstreetmap/josm/plugins/conflation/matcher/LevenshteinDistanceValueMatcher.java	(revision 235)
+++ src/org/openstreetmap/josm/plugins/conflation/matcher/LevenshteinDistanceValueMatcher.java	(working copy)
@@ -1,7 +1,7 @@
 // License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.conflation.matcher;
 
-import org.openstreetmap.josm.data.validation.tests.SimilarNamedWays;
+import org.openstreetmap.josm.tools.Utils;
 
 public class LevenshteinDistanceValueMatcher implements ValueMatcher {
 
@@ -23,6 +23,6 @@
         if (maxLength == 0)
             return 1.0;
         double divider = (distanceThreshold > 0) ? distanceThreshold : maxLength;
-        return Math.max(0.0, 1.0 - ((double) SimilarNamedWays.getLevenshteinDistance(target, candidate) / divider));
+        return Math.max(0.0, 1.0 - ((double) Utils.getLevenshteinDistance(target, candidate) / divider));
     }
 }
