Ignore:
Timestamp:
2015-06-03T13:24:59+02:00 (9 years ago)
Author:
Don-vip
Message:

javadoc / Unit test fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SimplifyWayAction.java

    r8443 r8459  
    166166     *
    167167     * @param w the way to simplify
     168     * @param threshold the max error threshold
    168169     * @return The sequence of commands to run
    169170     * @since 6411
     
    187188            }
    188189            // ... and simplify them
    189             buildSimplifiedNodeList(w.getNodes(), lower, Math.min(w.getNodesCount()-1, i), threshold,newNodes);
     190            buildSimplifiedNodeList(w.getNodes(), lower, Math.min(w.getNodesCount()-1, i), threshold, newNodes);
    190191            lower=i;
    191192            i++;
     
    214215     * @param from the lower index
    215216     * @param to the upper index
    216      * @param threshold
     217     * @param threshold the max error threshold
    217218     */
    218219    protected void buildSimplifiedNodeList(List<Node> wnew, int from, int to, double threshold, List<Node> simplifiedNodes) {
Note: See TracChangeset for help on using the changeset viewer.