9 lines
232 B
Java
9 lines
232 B
Java
package com.thoughtworks.xstream.converters;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface MarshallingContext extends DataHolder {
|
|
void convertAnother(Object obj);
|
|
|
|
void convertAnother(Object obj, Converter converter);
|
|
}
|