From 7d2a86f2bc65571e039174231dfe48a2e035ef15 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Thu, 4 Aug 2016 13:17:20 +0200 Subject: Delete unused org.sonar.home.cache.DeleteFileOnCloseInputStream --- .../home/cache/DeleteFileOnCloseInputStream.java | 84 ---------------------- 1 file changed, 84 deletions(-) delete mode 100644 sonar-home/src/main/java/org/sonar/home/cache/DeleteFileOnCloseInputStream.java (limited to 'sonar-home') diff --git a/sonar-home/src/main/java/org/sonar/home/cache/DeleteFileOnCloseInputStream.java b/sonar-home/src/main/java/org/sonar/home/cache/DeleteFileOnCloseInputStream.java deleted file mode 100644 index be8e4bab0c8..00000000000 --- a/sonar-home/src/main/java/org/sonar/home/cache/DeleteFileOnCloseInputStream.java +++ /dev/null @@ -1,84 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2016 SonarSource SA - * mailto:contact AT sonarsource DOT com - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -package org.sonar.home.cache; - -import java.io.IOException; -import java.io.InputStream; -import java.nio.file.Files; -import java.nio.file.Path; - -public class DeleteFileOnCloseInputStream extends InputStream { - private final InputStream is; - private final Path p; - - public DeleteFileOnCloseInputStream(InputStream stream, Path p) { - this.is = stream; - this.p = p; - } - - @Override - public int read() throws IOException { - return is.read(); - } - - @Override - public int read(byte[] b) throws IOException { - return is.read(b); - } - - @Override - public int read(byte[] b, int off, int len) throws IOException { - return is.read(b, off, len); - } - - @Override - public long skip(long n) throws IOException { - return is.skip(n); - } - - @Override - public synchronized void mark(int readlimit) { - is.mark(readlimit); - } - - @Override - public synchronized void reset() throws IOException { - is.reset(); - } - - @Override - public int available() throws IOException { - return is.available(); - } - - @Override - public boolean markSupported() { - return is.markSupported(); - } - - @Override - public void close() throws IOException { - try { - super.close(); - } finally { - Files.delete(p); - } - } -} -- cgit v1.2.3