removed souts

This commit is contained in:
Shautvast 2023-08-23 09:28:49 +02:00
parent 178977d3b9
commit 3e63eef1d1
2 changed files with 0 additions and 5 deletions

View file

@ -40,7 +40,6 @@ abstract class BuiltinTypeHandler<T> 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<T> 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) {

View file

@ -210,7 +210,6 @@ public class ContiguousList<E> extends NotImplementedList<E> implements List<E>
if (property instanceof BuiltinTypeHandler) {
BuiltinTypeHandler<?> type = ((BuiltinTypeHandler<?>) property);
Object readValue = ValueReader.read(data);
System.out.println(readValue);
type.setValue(element, readValue);
} else {
try {