Ignore:
Timestamp:
2016-08-03T17:54:36+02:00 (8 years ago)
Author:
simon04
Message:

Remove too specific Utils functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/SimilarNamedWays.java

    r10680 r10721  
    2424import org.openstreetmap.josm.gui.progress.ProgressMonitor;
    2525import org.openstreetmap.josm.tools.MultiMap;
    26 import org.openstreetmap.josm.tools.Utils;
    2726
    2827/**
     
    158157
    159158                // Step 6
    160                 d[i][j] = Utils.min(d[i - 1][j] + 1, d[i][j - 1] + 1, d[i - 1][j - 1] + cost);
     159                d[i][j] = Math.min(Math.min(d[i - 1][j] + 1, d[i][j - 1] + 1), d[i - 1][j - 1] + cost);
    161160            }
    162161        }
Note: See TracChangeset for help on using the changeset viewer.