Repository: incubator-blur Updated Branches: refs/heads/master da5600c5d -> 1e5450807
Changing clone return type. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/21512a68 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/21512a68 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/21512a68 Branch: refs/heads/master Commit: 21512a68cfdb3bc172778c3e627e875b4d8a7972 Parents: da5600c Author: Aaron McCurry <[email protected]> Authored: Wed Nov 12 09:11:02 2014 -0500 Committer: Aaron McCurry <[email protected]> Committed: Wed Nov 12 09:11:02 2014 -0500 ---------------------------------------------------------------------- .../org/apache/blur/store/buffer/ReusedBufferedIndexInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/21512a68/blur-store/src/main/java/org/apache/blur/store/buffer/ReusedBufferedIndexInput.java ---------------------------------------------------------------------- diff --git a/blur-store/src/main/java/org/apache/blur/store/buffer/ReusedBufferedIndexInput.java b/blur-store/src/main/java/org/apache/blur/store/buffer/ReusedBufferedIndexInput.java index 93f1347..a2cfcea 100644 --- a/blur-store/src/main/java/org/apache/blur/store/buffer/ReusedBufferedIndexInput.java +++ b/blur-store/src/main/java/org/apache/blur/store/buffer/ReusedBufferedIndexInput.java @@ -317,7 +317,7 @@ public abstract class ReusedBufferedIndexInput extends IndexInput { protected abstract void seekInternal(long pos) throws IOException; @Override - public ReusedBufferedIndexInput clone() { + public IndexInput clone() { ReusedBufferedIndexInput clone = (ReusedBufferedIndexInput) super.clone(); clone.buffer = null;
