summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorShawn Pearce <sop@google.com>2013-11-01 12:57:30 -0600
committerShawn Pearce <sop@google.com>2013-11-01 19:57:47 -0700
commit3bc289bcfe9e6e0e725435791572b233e5763a16 (patch)
tree383edb0d6411ad5f0ed03970bedaefd681711712 /org.eclipse.jgit
parent9e9f00df9eb5fb44d7de4d7ae9f8fa0d0b557a6c (diff)
downloadjgit-3bc289bcfe9e6e0e725435791572b233e5763a16.tar.gz
jgit-3bc289bcfe9e6e0e725435791572b233e5763a16.zip
Remove unnecessary import of BaseConnection in MessageWriter
Change-Id: I2af8b0ac0f9fbf2814eca23990ae527baf040539
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java
index 22c3ce94ed..a675360da1 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java
@@ -50,13 +50,12 @@ import java.io.OutputStreamWriter;
import java.io.Writer;
import org.eclipse.jgit.lib.Constants;
-import org.eclipse.jgit.transport.BaseConnection;
import org.eclipse.jgit.util.RawParseUtils;
/**
* Combines messages from an OutputStream (hopefully in UTF-8) and a Writer.
* <p>
- * This class is primarily meant for {@link BaseConnection} in contexts where a
+ * This class is primarily meant for {@code BaseConnection} in contexts where a
* standard error stream from a command execution, as well as messages from a
* side-band channel, need to be combined together into a buffer to represent
* the complete set of messages from a remote repository.