removed System.out.println from MappingPdxSerializer.java

This commit is contained in:
David Turanski
2013-02-01 11:58:54 -05:00
parent b4bfda1b9b
commit 4a81467200

View File

@@ -143,7 +143,6 @@ public class MappingPdxSerializer implements PdxSerializer, ApplicationContextAw
PdxSerializer customSerializer = getCustomSerializer(persistentProperty.getType());
Object value = null;
if (customSerializer != null) {
System.out.println("using custom serializer");
value = customSerializer.fromData(persistentProperty.getType(), reader);
} else {
value = reader.readField(persistentProperty.getName());