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) {
|
if (getter == null) {
|
||||||
return (T) propertyValue;
|
return (T) propertyValue;
|
||||||
}
|
}
|
||||||
System.out.println(propertyValue.getClass());
|
|
||||||
try {
|
try {
|
||||||
return (T) getter.invoke(propertyValue).unwrap();
|
return (T) getter.invoke(propertyValue).unwrap();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
|
|
@ -59,9 +58,6 @@ abstract class BuiltinTypeHandler<T> extends TypeHandler {
|
||||||
* @param value the value that has been read from ContiguousList storage
|
* @param value the value that has been read from ContiguousList storage
|
||||||
*/
|
*/
|
||||||
public void setValue(Object instance, Object value) {
|
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 {
|
try {
|
||||||
setter.invoke(instance, cast(value)).unwrap();
|
setter.invoke(instance, cast(value)).unwrap();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
|
|
|
||||||
|
|
@ -210,7 +210,6 @@ public class ContiguousList<E> extends NotImplementedList<E> implements List<E>
|
||||||
if (property instanceof BuiltinTypeHandler) {
|
if (property instanceof BuiltinTypeHandler) {
|
||||||
BuiltinTypeHandler<?> type = ((BuiltinTypeHandler<?>) property);
|
BuiltinTypeHandler<?> type = ((BuiltinTypeHandler<?>) property);
|
||||||
Object readValue = ValueReader.read(data);
|
Object readValue = ValueReader.read(data);
|
||||||
System.out.println(readValue);
|
|
||||||
type.setValue(element, readValue);
|
type.setValue(element, readValue);
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue