refactor!(serde-extension): Replace reader/writer chain APIs with readSubEntry and writeSubEntry methods

This commit is contained in:
2026-04-12 21:06:46 +02:00
parent a413fab8d5
commit 2f4011c144
8 changed files with 62 additions and 31 deletions

View File

@@ -324,6 +324,14 @@ public class TweedCoatMappersImpl {
public Patchwork extensionsData() {
return readExtData;
}
@Override
public <T, C extends ConfigEntry<T>> TweedReadResult<T> readSubEntry(
TweedDataReader reader,
C entry
) {
return TweedReadResult.empty();
}
}
);
}