Fix schem load

This commit is contained in:
Jesse Boyd
2019-11-01 23:48:52 +01:00
parent 09bb9c18ca
commit c2cb463dae
4 changed files with 11 additions and 5 deletions

View File

@ -156,11 +156,11 @@ public class StreamDelegate {
}
public StreamDelegate withLong(LongValueReader valueReader) {
return withValue(valueReader);
return withElem(valueReader);
}
public StreamDelegate withInt(IntValueReader valueReader) {
return withValue(valueReader);
return withElem(valueReader);
}
public StreamDelegate withValue(ValueReader valueReader) {