Ignore:
Timestamp:
2009-12-05T18:54:28+01:00 (17 years ago)
Author:
jttt
Message:

Encalupse OsmPrimitive.incomplete

Location:
applications/editors/josm/plugins/cadastre-fr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/build.xml

    r18920 r18962  
    3434
    3535    <property name="commit.message" value="Updated to new referrer support in OsmPrimitive" />         
    36     <property name="plugin.main.version" value="2565" />
     36    <property name="plugin.main.version" value="2578" />
    3737       
    3838    <target name="init">
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadSVGBuilding.java

    r18544 r18962  
    192192        double epsilon = 0.05; // smallest distance considering duplicate node
    193193        for (Node n : nodes) {
    194             if (!n.isDeleted() && !n.incomplete) {
     194            if (!n.isDeleted() && !n.isIncomplete()) {
    195195                double dist = n.getEastNorth().distance(nodeToAdd.getEastNorth());
    196196                if (dist < epsilon) {
Note: See TracChangeset for help on using the changeset viewer.