Repository: incubator-ignite Updated Branches: refs/heads/ignite-gg-9613 93da8b4be -> 7096402e2
# GG-9702: Implemented Java input stream. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/6bb45824 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/6bb45824 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/6bb45824 Branch: refs/heads/ignite-gg-9613 Commit: 6bb45824878149de1f63ef8458b428865aad3b47 Parents: 5049704 Author: vozerov-gridgain <[email protected]> Authored: Mon Apr 20 12:25:08 2015 +0300 Committer: vozerov-gridgain <[email protected]> Committed: Mon Apr 20 12:25:08 2015 +0300 ---------------------------------------------------------------------- .../portable/GridPortableInputStream.java | 19 ------------------- 1 file changed, 19 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/6bb45824/modules/core/src/main/java/org/apache/ignite/internal/processors/portable/GridPortableInputStream.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/portable/GridPortableInputStream.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/portable/GridPortableInputStream.java index 3c676bf..554b28f 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/portable/GridPortableInputStream.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/portable/GridPortableInputStream.java @@ -150,25 +150,6 @@ public interface GridPortableInputStream extends GridPortableStream { public double[] readDoubleArray(int cnt); /** - * Read data to byte array. - * - * @param arr Array. - * @param off Offset. - * @param len Length. - * @return Amount of actual bytes read. - */ - public int read(byte[] arr, int off, int len); - - /** - * Read data to the given address. - * - * @param addr Address. - * @param len Length. - * @return Amount of actual bytes read. - */ - public int read(long addr, int len); - - /** * Gets amount of remaining data in bytes. * * @return Remaining data.
