Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D9EB118038 for ; Tue, 28 Apr 2015 09:03:49 +0000 (UTC) Received: (qmail 53908 invoked by uid 500); 28 Apr 2015 09:03:49 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 53877 invoked by uid 500); 28 Apr 2015 09:03:49 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 53868 invoked by uid 99); 28 Apr 2015 09:03:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:03:49 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of root@apache.org designates 54.76.25.247 as permitted sender) Received: from [54.76.25.247] (HELO mx1-eu-west.apache.org) (54.76.25.247) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:03:25 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id A187E2AA73 for ; Tue, 28 Apr 2015 09:03:01 +0000 (UTC) Received: (qmail 50895 invoked by uid 99); 28 Apr 2015 09:02:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Apr 2015 09:02:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 91CA3E01E0; Tue, 28 Apr 2015 09:02:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yzhdanov@apache.org To: commits@ignite.incubator.apache.org Date: Tue, 28 Apr 2015 09:03:18 -0000 Message-Id: In-Reply-To: <3f1af497608940e2923e333c4ebc12fe@git.apache.org> References: <3f1af497608940e2923e333c4ebc12fe@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [22/50] incubator-ignite git commit: # GG-9702: Implemented. X-Virus-Checked: Checked by ClamAV on apache.org # 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-790 Commit: 2b50fbd526ce36c9172cbd9add9f2c5173ff1af3 Parents: a9c3aa4 Author: vozerov-gridgain Authored: Fri Apr 24 10:02:34 2015 +0300 Committer: vozerov-gridgain 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); }