Ignore:
Timestamp:
2013-10-04T03:27:01+02:00 (13 years ago)
Author:
Don-vip
Message:

Sonar/Findbugs - Avoid commented-out lines of code, javadoc

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Diff.java

    r6295 r6296  
    272272                                && yoff + SNAKE_LIMIT <= y && y < ylim)
    273273                        {
    274                             /* We have a good enough best diagonal;
    275                now insist that it end with a significant snake.  */
     274                            /* We have a good enough best diagonal.
     275                               now insist that it end with a significant snake.  */
    276276                            int k;
    277277
     
    305305                                && yoff < y && y <= ylim - SNAKE_LIMIT)
    306306                        {
    307                             /* We have a good enough best diagonal;
    308                now insist that it end with a significant snake.  */
     307                            /* We have a good enough best diagonal.
     308                               now insist that it end with a significant snake.  */
    309309                            int k;
    310310
     
    363363            int d = diag (xoff, xlim, yoff, ylim);
    364364            int c = cost;
    365             //int f = fdiag[fdiagoff + d];
    366365            int b = bdiag[bdiagoff + d];
    367366
  • trunk/src/org/openstreetmap/josm/tools/Geometry.java

    r6246 r6296  
    498498            }
    499499
    500             //order points so p1.lat <= p2.lat;
     500            //order points so p1.lat <= p2.lat
    501501            if (newPoint.getEastNorth().getY() > oldPoint.getEastNorth().getY()) {
    502502                p1 = oldPoint;
Note: See TracChangeset for help on using the changeset viewer.