aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home/src
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-home/src')
-rw-r--r--sonar-home/src/main/java/org/sonar/home/cache/FileHashes.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/sonar-home/src/main/java/org/sonar/home/cache/FileHashes.java b/sonar-home/src/main/java/org/sonar/home/cache/FileHashes.java
index 28066cf5b94..9a44ae6fa58 100644
--- a/sonar-home/src/main/java/org/sonar/home/cache/FileHashes.java
+++ b/sonar-home/src/main/java/org/sonar/home/cache/FileHashes.java
@@ -26,7 +26,6 @@ import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigInteger;
-import java.security.DigestInputStream;
import java.security.MessageDigest;
/**
@@ -50,7 +49,6 @@ public class FileHashes {
* Computes the hash of given stream. The stream is closed by this method.
*/
public String of(InputStream input) {
- DigestInputStream digestInputStream = null;
try {
MessageDigest digest = MessageDigest.getInstance("MD5");
byte[] hash = digest(input, digest);
@@ -60,7 +58,6 @@ public class FileHashes {
throw new IllegalStateException("Fail to compute hash", e);
} finally {
- IOUtils.closeQuietly(digestInputStream);
IOUtils.closeQuietly(input);
}
}