From 3e63eef1d1752910de1653107788bd7755990144 Mon Sep 17 00:00:00 2001 From: Shautvast Date: Wed, 23 Aug 2023 09:28:49 +0200 Subject: [PATCH] removed souts --- .../com/github/shautvast/contiguous/BuiltinTypeHandler.java | 4 ---- .../java/com/github/shautvast/contiguous/ContiguousList.java | 1 - 2 files changed, 5 deletions(-) diff --git a/lib/src/main/java/com/github/shautvast/contiguous/BuiltinTypeHandler.java b/lib/src/main/java/com/github/shautvast/contiguous/BuiltinTypeHandler.java index b059e9b..11bac45 100644 --- a/lib/src/main/java/com/github/shautvast/contiguous/BuiltinTypeHandler.java +++ b/lib/src/main/java/com/github/shautvast/contiguous/BuiltinTypeHandler.java @@ -40,7 +40,6 @@ abstract class BuiltinTypeHandler extends TypeHandler { if (getter == null) { return (T) propertyValue; } - System.out.println(propertyValue.getClass()); try { return (T) getter.invoke(propertyValue).unwrap(); } catch (Throwable e) { @@ -59,9 +58,6 @@ abstract class BuiltinTypeHandler extends TypeHandler { * @param value the value that has been read from ContiguousList storage */ public void setValue(Object instance, Object value) { - System.out.println(instance.getClass()); - System.out.println(cast(value)); - System.out.println(setter.getMetaClass().getJavaClass().getName()); try { setter.invoke(instance, cast(value)).unwrap(); } catch (Throwable e) { diff --git a/lib/src/main/java/com/github/shautvast/contiguous/ContiguousList.java b/lib/src/main/java/com/github/shautvast/contiguous/ContiguousList.java index 3d30811..0fa24a8 100644 --- a/lib/src/main/java/com/github/shautvast/contiguous/ContiguousList.java +++ b/lib/src/main/java/com/github/shautvast/contiguous/ContiguousList.java @@ -210,7 +210,6 @@ public class ContiguousList extends NotImplementedList implements List if (property instanceof BuiltinTypeHandler) { BuiltinTypeHandler type = ((BuiltinTypeHandler) property); Object readValue = ValueReader.read(data); - System.out.println(readValue); type.setValue(element, readValue); } else { try {