]> source.dussan.org Git - jgit.git/commitdiff
Remove unnecessary import of BaseConnection in MessageWriter 82/17982/1
authorShawn Pearce <sop@google.com>
Fri, 1 Nov 2013 18:57:30 +0000 (12:57 -0600)
committerShawn Pearce <sop@google.com>
Sat, 2 Nov 2013 02:57:47 +0000 (19:57 -0700)
Change-Id: I2af8b0ac0f9fbf2814eca23990ae527baf040539

org.eclipse.jgit/src/org/eclipse/jgit/util/io/MessageWriter.java

index 22c3ce94edb50308177d793ca6773a925f35d396..a675360da1a3d54f53eb2b7ec5fbe798b0710f6d 100644 (file)
@@ -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.