Remove debug output from PythonPartitioner.

This commit is contained in:
Josh Rosen 2012-12-26 18:23:06 -08:00
parent e2dad15621
commit 1dca0c5180

View file

@ -16,8 +16,6 @@ class PythonPartitioner(override val numPartitions: Int) extends Partitioner {
else {
val hashCode = {
if (key.isInstanceOf[Array[Byte]]) {
System.err.println("Dumping a byte array!" + Arrays.hashCode(key.asInstanceOf[Array[Byte]])
)
Arrays.hashCode(key.asInstanceOf[Array[Byte]])
}
else