Ignore:
Timestamp:
2018-07-08T03:28:38+02:00 (6 years ago)
Author:
donvip
Message:

fix compilation error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/GuiFieldBool.java

    r34398 r34403  
    1111
    1212public class GuiFieldBool extends JCheckBox {
    13         private JComponent companion =null;
    14         private  boolean value = false;
     13        private JComponent companion;
     14        private boolean value;
    1515
    1616        public JComponent getCompanion() {
     
    2828
    2929        public void setValue(boolean value) {
    30                 value = value;
     30                this.value = value;
    3131                super.setSelected(value);
    3232        }
Note: See TracChangeset for help on using the changeset viewer.