Ignore:
Timestamp:
2024-04-22T20:59:26+02:00 (7 months 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/io/session/SessionReader.java

    r18975 r19050  
    574574                        tr("Unable to load layer"),
    575575                        tr("Cannot load layer of type ''{0}'' because no suitable importer was found.", type),
    576                         JOptionPane.WARNING_MESSAGE,
    577                         progressMonitor
    578                         );
     576                        JOptionPane.WARNING_MESSAGE
     577                );
    579578                if (dialog.isCancel()) {
    580579                    progressMonitor.cancel();
     
    593592                                tr("Unable to load layer"),
    594593                                tr("Cannot load layer {0} because it depends on layer {1} which has been skipped.", idx, d),
    595                                 JOptionPane.WARNING_MESSAGE,
    596                                 progressMonitor
    597                                 );
     594                                JOptionPane.WARNING_MESSAGE
     595                        );
    598596                        if (dialog.isCancel()) {
    599597                            progressMonitor.cancel();
     
    625623                                        Utils.escapeReservedCharactersHTML(name),
    626624                                        Utils.escapeReservedCharactersHTML(exception.getMessage())),
    627                                 JOptionPane.ERROR_MESSAGE,
    628                                 progressMonitor
    629                                 );
     625                                JOptionPane.ERROR_MESSAGE
     626                        );
    630627                        if (dialog.isCancel()) {
    631628                            progressMonitor.cancel();
     
    735732     * needed to block the current thread and wait for the result of the modal dialog from EDT.
    736733     */
    737     private static class CancelOrContinueDialog {
     734    private static final class CancelOrContinueDialog {
    738735
    739736        private boolean cancel;
    740737
    741         public void show(final String title, final String message, final int icon, final ProgressMonitor progressMonitor) {
     738        void show(final String title, final String message, final int icon) {
    742739            try {
    743740                SwingUtilities.invokeAndWait(() -> {
Note: See TracChangeset for help on using the changeset viewer.