Author: kwright
Date: Mon Feb 11 13:20:51 2013
New Revision: 1444758
URL: http://svn.apache.org/r1444758
Log:
Fix operation when recording.
Modified:
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/fuzzyml/ReplayableInputStream.java
Modified:
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/fuzzyml/ReplayableInputStream.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/fuzzyml/ReplayableInputStream.java?rev=1444758&r1=1444757&r2=1444758&view=diff
==============================================================================
---
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/fuzzyml/ReplayableInputStream.java
(original)
+++
manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/fuzzyml/ReplayableInputStream.java
Mon Feb 11 13:20:51 2013
@@ -59,7 +59,10 @@ public class ReplayableInputStream exten
if (theByte == -1)
return theByte;
if (doBuffering)
+ {
bytes.appendByte((byte)theByte);
+ bytePosition++;
+ }
return theByte;
}