aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/util/io
diff options
context:
space:
mode:
authorJonathan Nieder <jrn@google.com>2016-11-13 16:01:16 -0800
committerJonathan Nieder <jrn@google.com>2016-11-13 16:01:16 -0800
commitf21233fd0e5e83338998becb00677639235653e4 (patch)
tree8232b5296f1c3ad88b38a83bbb865de2fbfdba95 /org.eclipse.jgit/src/org/eclipse/jgit/util/io
parent96941550deb5c3029b16259044dc95ed50170288 (diff)
downloadjgit-f21233fd0e5e83338998becb00677639235653e4.tar.gz
jgit-f21233fd0e5e83338998becb00677639235653e4.zip
StreamCopyThread: Remove unused AtomicInteger import
I forgot to do this in 97f3baa0d3df7ed26a55b2240cc5ce1a04861a4c (StreamCopyThread: Remove unnecessary flushCount, 2016-11-13). Change-Id: Iaed9f345848cf0f854c9d0debcf94bc831d53054
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/util/io')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/io/StreamCopyThread.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/StreamCopyThread.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/StreamCopyThread.java
index 329a7a161f..7aba0a583d 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/StreamCopyThread.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/StreamCopyThread.java
@@ -47,7 +47,6 @@ import java.io.IOException;
import java.io.InputStream;
import java.io.InterruptedIOException;
import java.io.OutputStream;
-import java.util.concurrent.atomic.AtomicInteger;
/** Thread to copy from an input stream to an output stream. */
public class StreamCopyThread extends Thread {