Return-Path: X-Original-To: apmail-jackrabbit-oak-commits-archive@minotaur.apache.org Delivered-To: apmail-jackrabbit-oak-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 7515AD7A0 for ; Mon, 10 Sep 2012 13:04:00 +0000 (UTC) Received: (qmail 85522 invoked by uid 500); 10 Sep 2012 13:04:00 -0000 Delivered-To: apmail-jackrabbit-oak-commits-archive@jackrabbit.apache.org Received: (qmail 85457 invoked by uid 500); 10 Sep 2012 13:03:59 -0000 Mailing-List: contact oak-commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: oak-dev@jackrabbit.apache.org Delivered-To: mailing list oak-commits@jackrabbit.apache.org Received: (qmail 85425 invoked by uid 99); 10 Sep 2012 13:03:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2012 13:03:58 +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; Mon, 10 Sep 2012 13:03:56 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6E85D23888E3; Mon, 10 Sep 2012 13:03:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1382813 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java Date: Mon, 10 Sep 2012 13:03:12 -0000 To: oak-commits@jackrabbit.apache.org From: mduerig@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120910130312.6E85D23888E3@eris.apache.org> Author: mduerig Date: Mon Sep 10 13:03:11 2012 New Revision: 1382813 URL: http://svn.apache.org/viewvc?rev=1382813&view=rev Log: OAK-298: Refactor the Indexer mechanism to use the NodeStore apis fix comment Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java?rev=1382813&r1=1382812&r2=1382813&view=diff ============================================================================== --- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java (original) +++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/Indexer.java Mon Sep 10 13:03:11 2012 @@ -37,7 +37,7 @@ import org.apache.jackrabbit.oak.commons * A index mechanism. An index is bound to a certain repository, and supports * one or more indexes. * - * @deprecated use {@link PropertyIndexer} - see OAK-289 + * @deprecated use {@link PropertyIndexer} - see OAK-298 */ public class Indexer implements PropertyIndexConstants, BTreeHelper {