Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-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 4DEA911300 for ; Sun, 10 Aug 2014 22:08:46 +0000 (UTC) Received: (qmail 92578 invoked by uid 500); 10 Aug 2014 22:08:46 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 92515 invoked by uid 500); 10 Aug 2014 22:08:46 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 92499 invoked by uid 99); 10 Aug 2014 22:08:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Aug 2014 22:08:46 +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; Sun, 10 Aug 2014 22:08:25 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 63AB02388868; Sun, 10 Aug 2014 22:08:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1617169 - /logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java Date: Sun, 10 Aug 2014 22:08:23 -0000 To: commits@logging.apache.org From: mattsicker@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140810220823.63AB02388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mattsicker Date: Sun Aug 10 22:08:22 2014 New Revision: 1617169 URL: http://svn.apache.org/r1617169 Log: Javadoc addition. Modified: logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java Modified: logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java?rev=1617169&r1=1617168&r2=1617169&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java (original) +++ logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/LifeCycle.java Sun Aug 10 22:08:22 2014 @@ -25,12 +25,12 @@ package org.apache.logging.log4j.core; * When the {@link #stop()} is called, this goes into the {@link State#STOPPING} state. After successfully being * stopped, this goes into the {@link State#STOPPED} state. In most circumstances, implementation classes should * store their {@link State} in a {@code volatile} field or inside an - * {@link java.util.concurrent.atomic.AtomicReference}. + * {@link java.util.concurrent.atomic.AtomicReference} dependant on synchronization and concurrency requirements. */ public interface LifeCycle { /** - * Status of a life cycle like a {@link LoggerContext}.. + * Status of a life cycle like a {@link LoggerContext}. */ public enum State { /** Initialized but not yet started. */