Ignore:
Timestamp:
2014-01-26T19:29:07+01:00 (11 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/render/Renderer.java

    r30215 r30232  
    218218                        GeomIterator git = map.new GeomIterator(feature.geom);
    219219                        while (git.hasMore()) {
    220                                 git.more();
     220                                git.getMore();
    221221                                boolean first = true;
    222222                                while (git.hasNext()) {
     
    277277                GeomIterator git = map.new GeomIterator(feature.geom);
    278278                while (git.hasMore()) {
    279                         git.more();
     279                        git.getMore();
    280280                        point = context.getPoint(git.next());
    281281                        p.moveTo(point.getX(), point.getY());
     
    352352                        GeomIterator git = map.new GeomIterator(feature.geom);
    353353                        while (git.hasMore()) {
    354                                 git.more();
     354                                git.getMore();
    355355                                point = context.getPoint(git.next());
    356356                                p.moveTo(point.getX(), point.getY());
     
    498498                        GeomIterator git = map.new GeomIterator(feature.geom);
    499499                        while (git.hasMore()) {
    500                                 git.more();
     500                                git.getMore();
    501501                                boolean first = true;
    502502                                while (git.hasNext()) {
Note: See TracChangeset for help on using the changeset viewer.