Ignore:
Timestamp:
2013-04-23T13:43:26+02:00 (13 years ago)
Author:
donvip
Message:

[josm_reltoolbox] Fix some warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelationComponent.java

    r25695 r29535  
    11package relcontext;
    22
    3 import java.awt.Color;
    43import javax.swing.JLabel;
    5 import javax.swing.border.BevelBorder;
    6 import javax.swing.border.LineBorder;
     4
    75import org.openstreetmap.josm.data.osm.Relation;
    86
     
    1614public class ChosenRelationComponent extends JLabel implements ChosenRelationListener {
    1715
    18     private ChosenRelation chRel;
     16    //private ChosenRelation chRel;
    1917
    2018    public ChosenRelationComponent(ChosenRelation rel) {
     
    2321        setOpaque(true);
    2422        setBorder(new LineBorder(Color.black, 1, true));*/
    25         this.chRel = rel;
     23        //this.chRel = rel;
    2624        rel.addChosenRelationListener(this);
    2725    }
Note: See TracChangeset for help on using the changeset viewer.