Ignore:
Timestamp:
2017-06-08T00:55:27+02:00 (7 years ago)
Author:
donvip
Message:

fix some warnings

Location:
applications/editors/josm/plugins/piclayer
Files:
3 edited

Legend:

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

    r32680 r33385  
    33    <property name="commit.message" value="[josm/PicLayer] - #12045 add ability to localize dialog titles"/>
    44    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    5     <property name="plugin.main.version" value="10580"/>
     5    <property name="plugin.main.version" value="11713"/>
    66       
    77    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/actions/GenericPicTransformAction.java

    r33384 r33385  
    3030    public GenericPicTransformAction(String name, String actionName, String iconName,
    3131            String tooltip, Shortcut shortcut, MapFrame mapFrame, Cursor cursor) {
    32         super(name, iconName, tooltip, shortcut, mapFrame, cursor);
     32        super(name, iconName, tooltip, shortcut, cursor);
    3333        this.actionName = actionName;
    3434    }
     
    3636    public GenericPicTransformAction(String name, String actionName, String iconName,
    3737            String tooltip, MapFrame mapFrame, Cursor cursor) {
    38         super(name, iconName, tooltip, mapFrame, cursor);
     38        super(name, iconName, tooltip, cursor);
    3939        this.actionName = actionName;
    4040    }
  • applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/actions/newlayer/NewLayerFromFileAction.java

    r32675 r33385  
    5555     * Provides filtering of only image files.
    5656     */
    57     private class ImageFileFilter extends FileFilter {
     57    private static class ImageFileFilter extends FileFilter {
    5858
    5959        private String[] supportedExtensions;
Note: See TracChangeset for help on using the changeset viewer.