Ignore:
Timestamp:
2015-05-11T10:52:33+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - Useless parentheses around expressions should be removed to prevent any misunderstanding

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r8338 r8345  
    13671367            }), GBC.eol());
    13681368
    1369             JosmTextArea description = new JosmTextArea((info.description == null ? tr("no description available")
    1370                     : info.description));
     1369            JosmTextArea description = new JosmTextArea(info.description == null ? tr("no description available")
     1370                    : info.description);
    13711371            description.setEditable(false);
    13721372            description.setFont(new JLabel().getFont().deriveFont(Font.ITALIC));
Note: See TracChangeset for help on using the changeset viewer.