diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-08-04 13:17:20 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-08-04 13:17:20 +0200 |
commit | 7d2a86f2bc65571e039174231dfe48a2e035ef15 (patch) | |
tree | 3b50f9d8bdfe735d0e11fb7f2e05542e361735e5 /sonar-home | |
parent | 99d6d35ba7001b4c261927a5114aec204dad3fce (diff) | |
download | sonarqube-7d2a86f2bc65571e039174231dfe48a2e035ef15.tar.gz sonarqube-7d2a86f2bc65571e039174231dfe48a2e035ef15.zip |
Delete unused org.sonar.home.cache.DeleteFileOnCloseInputStream
Diffstat (limited to 'sonar-home')
-rw-r--r-- | sonar-home/src/main/java/org/sonar/home/cache/DeleteFileOnCloseInputStream.java | 84 |
1 files changed, 0 insertions, 84 deletions
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); - } - } -} |