removed souts
This commit is contained in:
parent
178977d3b9
commit
3e63eef1d1
2 changed files with 0 additions and 5 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue