Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2B8E817530 for ; Tue, 7 Oct 2014 17:16:55 +0000 (UTC) Received: (qmail 71288 invoked by uid 500); 7 Oct 2014 17:16:55 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 71182 invoked by uid 500); 7 Oct 2014 17:16:55 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 71104 invoked by uid 99); 7 Oct 2014 17:16:54 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Oct 2014 17:16:54 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id A1BF2903300; Tue, 7 Oct 2014 17:16:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Tue, 07 Oct 2014 17:16:55 -0000 Message-Id: <8bf43376c1b84b4bbe71ec1c244d350d@git.apache.org> In-Reply-To: <3587b9ea38314d87a664d09ac9e55bb3@git.apache.org> References: <3587b9ea38314d87a664d09ac9e55bb3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] git commit: ACCUMULO-3182 Fix javadoc (link to non-visible member) ACCUMULO-3182 Fix javadoc (link to non-visible member) Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/4a5bd7ef Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/4a5bd7ef Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/4a5bd7ef Branch: refs/heads/master Commit: 4a5bd7ef6ec1f0ae165733cf65bbc915b91e8532 Parents: 8cda2d6 Author: Christopher Tubbs Authored: Tue Oct 7 13:08:44 2014 -0400 Committer: Christopher Tubbs Committed: Tue Oct 7 13:08:44 2014 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/server/log/SortedLogState.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/4a5bd7ef/server/base/src/main/java/org/apache/accumulo/server/log/SortedLogState.java ---------------------------------------------------------------------- diff --git a/server/base/src/main/java/org/apache/accumulo/server/log/SortedLogState.java b/server/base/src/main/java/org/apache/accumulo/server/log/SortedLogState.java index f337cd8..49d744e 100644 --- a/server/base/src/main/java/org/apache/accumulo/server/log/SortedLogState.java +++ b/server/base/src/main/java/org/apache/accumulo/server/log/SortedLogState.java @@ -19,7 +19,7 @@ package org.apache.accumulo.server.log; import org.apache.hadoop.fs.Path; /** - * A file is written in the destination directory for the sorting of write-ahead logs that need recovering. The value of {@link #marker} is the name of the file + * A file is written in the destination directory for the sorting of write-ahead logs that need recovering. The value of {@link #getMarker()} is the name of the file * that will exist in the sorted output directory. */ public enum SortedLogState { @@ -63,4 +63,4 @@ public enum SortedLogState { public String toString() { return marker; } -} \ No newline at end of file +}