Skip to content

Commit

Permalink
AVRO-2918: retrieve unused class
Browse files Browse the repository at this point in the history
  • Loading branch information
clesaec committed Aug 1, 2023
1 parent c9a2422 commit 9d3b24c
Showing 1 changed file with 0 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -597,22 +597,6 @@ public Object read(Object reuse, Decoder decoder) throws IOException {
}
}

public static class ExtendsReader implements FieldReader {
private final Schema schema;

public ExtendsReader(final Schema schema) {
this.schema = schema;
}

@Override
public Object read(final Object reuse, final Decoder decoder) throws IOException {
int index = decoder.readExtends();
final Schema realSchema = this.schema.findInHierachy(index);
return null;
}

}

public static class MapReader implements FieldReader {

private final FieldReader keyReader;
Expand Down

0 comments on commit 9d3b24c

Please sign in to comment.