From commits-return-46117-archive-asf-public=cust-asf.ponee.io@qpid.apache.org Wed Jul 4 18:02:16 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 60F50180608 for ; Wed, 4 Jul 2018 18:02:16 +0200 (CEST) Received: (qmail 1173 invoked by uid 500); 4 Jul 2018 16:02:15 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 1164 invoked by uid 99); 4 Jul 2018 16:02:15 -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; Wed, 04 Jul 2018 16:02:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 607ADDFC42; Wed, 4 Jul 2018 16:02:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robbie@apache.org To: commits@qpid.apache.org Date: Wed, 04 Jul 2018 16:02:15 -0000 Message-Id: <5a68f228171543978d9f685551c5c6e3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] qpid-proton-j git commit: NO-JIRA: make javadoc more specific to clarify meaning Repository: qpid-proton-j Updated Branches: refs/heads/master 32cc5120f -> e91fa5f18 NO-JIRA: make javadoc more specific to clarify meaning Project: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/commit/156c0f7b Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/tree/156c0f7b Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/diff/156c0f7b Branch: refs/heads/master Commit: 156c0f7b2c0ade0aa52f87d187e58442326a815d Parents: 32cc512 Author: Robbie Gemmell Authored: Wed Jul 4 15:20:43 2018 +0100 Committer: Robbie Gemmell Committed: Wed Jul 4 15:20:43 2018 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/qpid/proton/codec/ReadableBuffer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/156c0f7b/proton-j/src/main/java/org/apache/qpid/proton/codec/ReadableBuffer.java ---------------------------------------------------------------------- diff --git a/proton-j/src/main/java/org/apache/qpid/proton/codec/ReadableBuffer.java b/proton-j/src/main/java/org/apache/qpid/proton/codec/ReadableBuffer.java index ea3ef17..05cbb97 100644 --- a/proton-j/src/main/java/org/apache/qpid/proton/codec/ReadableBuffer.java +++ b/proton-j/src/main/java/org/apache/qpid/proton/codec/ReadableBuffer.java @@ -58,10 +58,10 @@ public interface ReadableBuffer { byte[] array(); /** - * Returns the offset into the backing array where data should be read from. The caller + * Returns the offset into the backing array of the first element in the buffer. The caller * should have checked the {@link #hasArray()} method before calling this method. * - * @return the offset into the backing array to start reading from. + * @return the offset into the backing array of the first element in the buffer. * * @throws UnsupportedOperationException if this {@link ReadableBuffer} doesn't support array access. * @throws ReadOnlyBufferException if the ReadableBuffer is read-only. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org