Ignore:
Timestamp:
2024-04-22T20:59:26+02:00 (6 weeks ago)
Author:
taylor.smock
Message:

Revert most var changes from r19048, fix most new compile warnings and checkstyle issues

Also, document why various ErrorProne checks were originally disabled and fix
generic SonarLint issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictResolutionDialog.java

    r14153 r19050  
    1616import javax.swing.JOptionPane;
    1717import javax.swing.JPanel;
     18import javax.swing.SwingConstants;
    1819
    1920import org.openstreetmap.josm.data.UndoRedoHandler;
     
    3435    /** the conflict resolver component */
    3536    private final ConflictResolver resolver = new ConflictResolver();
    36     private final JLabel titleLabel = new JLabel("", null, JLabel.CENTER);
     37    private final JLabel titleLabel = new JLabel("", null, SwingConstants.CENTER);
    3738
    3839    private final ApplyResolutionAction applyResolutionAction = new ApplyResolutionAction();
     
    196197                        options[1]
    197198                );
    198                 switch(ret) {
     199                switch (ret) {
    199200                case JOptionPane.YES_OPTION:
    200201                    buttonAction(1, evt);
Note: See TracChangeset for help on using the changeset viewer.