We never reset the stream, so just remove that as a valid option. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../spearce/jgit/util/CountingOutputStream.java | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/util/CountingOutputStream.java b/org.spearce.jgit/src/org/spearce/jgit/util/CountingOutputStream.java index b0b5f7d..5f333f5 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/util/CountingOutputStream.java +++ b/org.spearce.jgit/src/org/spearce/jgit/util/CountingOutputStream.java @@ -72,17 +72,9 @@ public void write(byte[] b, int off, int len) throws IOException { /** * Return number of already written bytes. * - * @return number of written bytes since last reset (object is reset upon - * creation) + * @return number of written bytes since stream start. */ public long getCount() { return count; } - - /** - * Reset counter to zero value. - */ - public void reset() { - count = 0; - } } -- 1.6.2.1.471.g682837 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html