hyperdefined / CustomLauncherRewrite

Multiple variables declared on the same line JAVA-C1003
Style
Major
6 months ago8 months old
301        byte[] buffer = new byte[1024];
302        int len;
303
304        try (BZip2CompressorInputStream in = new BZip2CompressorInputStream(new BufferedInputStream(new FileInputStream(tempFile))); FileOutputStream out = new FileOutputStream(output)) {305            while ((len = in.read(buffer)) != -1) {
306                out.write(buffer, 0, len);
307                bytesRead += len;
239     * @param downloadedFile The temp file's name that was downloaded.
240     */
241    private void decompress(String downloadedFile) {
242        try (FileInputStream fileInputStream = new FileInputStream(downloadedFile); BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream); GzipCompressorInputStream gzipInputStream = new GzipCompressorInputStream(bufferedInputStream); TarArchiveInputStream tarArchiveInputStream = new TarArchiveInputStream(gzipInputStream)) {243
244            TarArchiveEntry entry;
245            while ((entry = tarArchiveInputStream.getNextEntry()) != null) {