Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove flushable from JsonParser
  • Loading branch information
ajaaym committed Dec 10, 2018
commit d07aabe336a5301a363a110517ccf3559ede1e14
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import com.google.api.client.util.Types;

import java.io.Closeable;
import java.io.Flushable;
import java.io.IOException;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
Expand Down Expand Up @@ -62,7 +61,7 @@
* @since 1.3
* @author Yaniv Inbar
*/
public abstract class JsonParser implements Closeable, Flushable {
public abstract class JsonParser implements Closeable {

/**
* Maps a polymorphic {@link Class} to its {@link Field} with the {@link JsonPolymorphicTypeMap}
Expand Down