You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by gs...@apache.org on 2009/06/25 23:42:17 UTC

svn commit: r788520 - /lucene/mahout/trunk/examples/src/main/java/org/apache/mahout/clustering/syntheticcontrol/kmeans/Job.java

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];