Changeset 18942 in osm for applications


Ignore:
Timestamp:
2009-12-04T18:51:12+01:00 (15 years ago)
Author:
stoecker
Message:

cleanup

Location:
applications/editors/josm/plugins
Files:
1 added
1 deleted
2 edited

Legend:

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

    r18078 r18942  
    77    <target name="dist" depends="compile">
    88        <mkdir dir="../dist"/>
    9         <ant antfile="build.xml" target="dist" dir="agpifoj"/>
    109        <ant antfile="build.xml" target="dist" dir="cadastre-fr"/>
    1110        <ant antfile="build.xml" target="dist" dir="colorscheme"/>
     
    4948    </target>
    5049    <target name="clean">
    51         <ant antfile="build.xml" target="clean" dir="agpifoj"/>
    5250        <ant antfile="build.xml" target="clean" dir="cadastre-fr"/>
    5351        <ant antfile="build.xml" target="clean" dir="colorscheme"/>
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Grabber.java

    r17556 r18942  
    2929            double eastSize =  b.max.east() - b.min.east();
    3030            double northSize =  b.max.north() - b.min.north();
    31    
     31
    3232            double eastCoef = WMSPlugin.overlapEast / 100.0;
    3333            double northCoef = WMSPlugin.overlapNorth / 100.0;
    34              
    35             this.b = new ProjectionBounds( new EastNorth(b.min.east(), 
     34
     35            this.b = new ProjectionBounds( new EastNorth(b.min.east(),
    3636                                            b.min.north()),
    3737                                 new EastNorth(b.max.east() + eastCoef * eastSize,
    38                                             b.max.north() + northCoef * northSize));             
     38                                            b.max.north() + northCoef * northSize));
    3939        } else
    4040           this.b = b;
Note: See TracChangeset for help on using the changeset viewer.