Return-Path: Delivered-To: apmail-lucene-mahout-commits-archive@minotaur.apache.org Received: (qmail 48291 invoked from network); 25 Jun 2009 21:42:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Jun 2009 21:42:31 -0000 Received: (qmail 70170 invoked by uid 500); 25 Jun 2009 21:42:42 -0000 Delivered-To: apmail-lucene-mahout-commits-archive@lucene.apache.org Received: (qmail 70122 invoked by uid 500); 25 Jun 2009 21:42:42 -0000 Mailing-List: contact mahout-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mahout-dev@lucene.apache.org Delivered-To: mailing list mahout-commits@lucene.apache.org Received: (qmail 70113 invoked by uid 99); 25 Jun 2009 21:42:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2009 21:42:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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, 25 Jun 2009 21:42:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EF87F23888BD; Thu, 25 Jun 2009 21:42:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r788520 - /lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java Date: Thu, 25 Jun 2009 21:42:17 -0000 To: mahout-commits@lucene.apache.org From: gsingers@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090625214217.EF87F23888BD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gsingers Date: Thu Jun 25 21:42:17 2009 New Revision: 788520 URL: http://svn.apache.org/viewvc?rev=788520&view=rev Log: correct # of args Modified: lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java Modified: lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java?rev=788520&r1=788519&r2=788520&view=diff ============================================================================== --- lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java (original) +++ lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java Thu Jun 25 21:42:17 2009 @@ -37,7 +37,7 @@ } public static void main(String[] args) throws IOException, ClassNotFoundException { - if (args.length == 7) { + if (args.length == 8) { String input = args[0]; String output = args[1]; String measureClass = args[2];