Skip to content
Snippets Groups Projects
Commit 1dca0c51 authored by Josh Rosen's avatar Josh Rosen
Browse files

Remove debug output from PythonPartitioner.

parent e2dad156
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment