Return-Path: X-Original-To: apmail-jackrabbit-commits-archive@www.apache.org Delivered-To: apmail-jackrabbit-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 A1B0B9A88 for ; Thu, 5 Jan 2012 13:47:21 +0000 (UTC) Received: (qmail 87971 invoked by uid 500); 5 Jan 2012 13:47:21 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 87884 invoked by uid 500); 5 Jan 2012 13:47:21 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 87877 invoked by uid 99); 5 Jan 2012 13:47:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Jan 2012 13:47:20 +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; Thu, 05 Jan 2012 13:47:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8CD7A2388900; Thu, 5 Jan 2012 13:46:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1227593 - /jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java Date: Thu, 05 Jan 2012 13:46:59 -0000 To: commits@jackrabbit.apache.org From: reschke@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120105134659.8CD7A2388900@eris.apache.org> Author: reschke Date: Thu Jan 5 13:46:59 2012 New Revision: 1227593 URL: http://svn.apache.org/viewvc?rev=1227593&view=rev Log: javadoc fix Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java Modified: jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java?rev=1227593&r1=1227592&r2=1227593&view=diff ============================================================================== --- jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java (original) +++ jackrabbit/trunk/jackrabbit-api/src/main/java/org/apache/jackrabbit/api/management/DataStoreGarbageCollector.java Thu Jan 5 13:46:59 2012 @@ -19,11 +19,11 @@ package org.apache.jackrabbit.api.manage import javax.jcr.RepositoryException; /** - * Garbage collector for DataStore. This implementation is iterates through all + * Garbage collector for DataStore. This implementation iterates through all * nodes and reads the binary properties. To detect nodes that are moved while * the scan runs, event listeners are started. Like the well known garbage * collection in Java, the items that are still in use are marked. Currently - * this achieved by updating the modified date of the entries. Newly added + * this is achieved by updating the modified date of the entries. Newly added * entries are detected because the modified date is changed when they are * added. *