You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by to...@apache.org on 2012/10/03 08:03:06 UTC

svn commit: r1393303 - /hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java

Author: tommaso
Date: Wed Oct  3 06:03:06 2012
New Revision: 1393303

URL: http://svn.apache.org/viewvc?rev=1393303&view=rev
Log:
[HAMA-650] - fixed broken import in Kmeans example

Modified:
    hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java

Modified: hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java
URL: http://svn.apache.org/viewvc/hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java?rev=1393303&r1=1393302&r2=1393303&view=diff
==============================================================================
--- hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java (original)
+++ hama/trunk/examples/src/main/java/org/apache/hama/examples/Kmeans.java Wed Oct  3 06:03:06 2012
@@ -22,7 +22,7 @@ import org.apache.hadoop.fs.FileSystem;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.io.NullWritable;
 import org.apache.hama.bsp.BSPJob;
-import org.apache.hama.ml.KMeansBSP;
+import org.apache.hama.ml.kmeans.KMeansBSP;
 import org.apache.hama.ml.writable.VectorWritable;
 
 /**