Ignore:
Timestamp:
2019-12-13T22:12:24+01:00 (4 years ago)
Author:
Don-vip
Message:

tools update: checkstyle 8.27, pmd 6.20, spotbugs 3.1.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/Compression.java

    r14979 r15588  
    177177    public static InputStream getUncompressedFileInputStream(File file) throws IOException {
    178178        try {
    179             InputStream in = Files.newInputStream(file.toPath());
     179            InputStream in = Files.newInputStream(file.toPath()); // NOPMD
    180180            try {
    181181                return byExtension(file.getName()).getUncompressedInputStream(in);
     
    221221     */
    222222    public static OutputStream getCompressedFileOutputStream(File file) throws IOException {
    223         OutputStream out = Files.newOutputStream(file.toPath());
     223        OutputStream out = Files.newOutputStream(file.toPath()); // NOPMD
    224224        try {
    225225            return byExtension(file.getName()).getCompressedOutputStream(out);
Note: See TracChangeset for help on using the changeset viewer.