Return-Path: X-Original-To: apmail-mahout-commits-archive@www.apache.org Delivered-To: apmail-mahout-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 71F0A100EF for ; Wed, 5 Mar 2014 21:55:33 +0000 (UTC) Received: (qmail 40384 invoked by uid 500); 5 Mar 2014 21:55:31 -0000 Delivered-To: apmail-mahout-commits-archive@mahout.apache.org Received: (qmail 40287 invoked by uid 500); 5 Mar 2014 21:55:30 -0000 Mailing-List: contact commits-help@mahout.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mahout.apache.org Delivered-To: mailing list commits@mahout.apache.org Received: (qmail 40279 invoked by uid 99); 5 Mar 2014 21:55:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Mar 2014 21:55:30 +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; Wed, 05 Mar 2014 21:55:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7519523888E2; Wed, 5 Mar 2014 21:55:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1574687 - /mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java Date: Wed, 05 Mar 2014 21:55:09 -0000 To: commits@mahout.apache.org From: frankscholten@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140305215509.7519523888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: frankscholten Date: Wed Mar 5 21:55:09 2014 New Revision: 1574687 URL: http://svn.apache.org/r1574687 Log: Fixed javadoc. Modified: mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java Modified: mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java URL: http://svn.apache.org/viewvc/mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java?rev=1574687&r1=1574686&r2=1574687&view=diff ============================================================================== --- mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java (original) +++ mahout/trunk/core/src/main/java/org/apache/mahout/clustering/iterator/ClusterIterator.java Wed Mar 5 21:55:09 2014 @@ -42,7 +42,7 @@ import com.google.common.io.Closeables; /** * This is a clustering iterator which works with a set of Vector data and a prior ClusterClassifier which has been * initialized with a set of models. Its implementation is algorithm-neutral and works for any iterative clustering - * algorithm (currently k-means, fuzzy-k-means and Dirichlet) that processes all the input vectors in each iteration. + * algorithm (currently k-means and fuzzy-k-means) that processes all the input vectors in each iteration. * The cluster classifier is configured with a ClusteringPolicy to select the desired clustering algorithm. */ public final class ClusterIterator {