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 B3D77E364 for ; Tue, 29 Jan 2013 16:14:41 +0000 (UTC) Received: (qmail 2806 invoked by uid 500); 29 Jan 2013 16:14:41 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 2074 invoked by uid 500); 29 Jan 2013 16:14:40 -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 2052 invoked by uid 99); 29 Jan 2013 16:14:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jan 2013 16:14:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Jan 2013 16:14:38 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D2191238896F; Tue, 29 Jan 2013 16:14:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1439972 - /accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java Date: Tue, 29 Jan 2013 16:14:19 -0000 To: commits@accumulo.apache.org From: ecn@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130129161419.D2191238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ecn Date: Tue Jan 29 16:14:19 2013 New Revision: 1439972 URL: http://svn.apache.org/viewvc?rev=1439972&view=rev Log: ACCUMULO-259: fix comment to match code Modified: accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java Modified: accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java URL: http://svn.apache.org/viewvc/accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java?rev=1439972&r1=1439971&r2=1439972&view=diff ============================================================================== --- accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java (original) +++ accumulo/trunk/core/src/main/java/org/apache/accumulo/core/security/tokens/SecurityToken.java Tue Jan 29 16:14:19 2013 @@ -3,7 +3,7 @@ package org.apache.accumulo.core.securit import javax.security.auth.Destroyable; /** - * Any AccumuloTokens created need to have an empty constructor as well + * Any SecurityTokens created need to have an empty constructor as well */ public interface SecurityToken extends Destroyable { public String getPrincipal();