Changeset 32683 in osm for applications/editors/josm


Ignore:
Timestamp:
2016-07-21T03:39:43+02:00 (8 years ago)
Author:
donvip
Message:

fix http://errorprone.info/bugpattern/ArrayToStringConcatenation

File:
1 edited

Legend:

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

    r32416 r32683  
    4040import java.nio.file.StandardCopyOption;
    4141import java.util.ArrayList;
     42import java.util.Arrays;
    4243import java.util.Collection;
    4344import java.util.List;
     
    518519                Main.error(
    519520                        tr("Error executing the script: ") +
    520                         debugstr.toString() + e.getMessage() + "\n" + e.getStackTrace());
     521                        debugstr.toString() + e.getMessage() + "\n" + Arrays.toString(e.getStackTrace()));
    521522            }
    522523            return;
Note: See TracChangeset for help on using the changeset viewer.