# GG-9702: Implemented.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2b50fbd5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2b50fbd5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2b50fbd5 Branch: refs/heads/ignite-646 Commit: 2b50fbd526ce36c9172cbd9add9f2c5173ff1af3 Parents: a9c3aa4 Author: vozerov-gridgain <voze...@gridgain.com> Authored: Fri Apr 24 10:02:34 2015 +0300 Committer: vozerov-gridgain <voze...@gridgain.com> Committed: Fri Apr 24 10:02:34 2015 +0300 ---------------------------------------------------------------------- .../portable/GridPortableInputStream.java | 26 -------------------- 1 file changed, 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2b50fbd5/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..f630d01 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,35 +150,9 @@ 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. */ public int remaining(); - - /** - * Length of data inside array. - * - * @param len Length. - */ - public void length(int len); }