This is an automated email from the ASF dual-hosted git repository. etudenhoefner pushed a commit to branch 1.10.x in repository https://gitbox.apache.org/repos/asf/iceberg.git
commit d29a8ee5b5ece871278e08dfd48f1cd23cf848a9 Author: Prashant Singh <[email protected]> AuthorDate: Wed Nov 12 19:22:34 2025 +0530 Core: Increase visibility of ParserContext (#14572) Co-authored-by: Prashant Singh <[email protected]> --- core/src/main/java/org/apache/iceberg/rest/ParserContext.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/apache/iceberg/rest/ParserContext.java b/core/src/main/java/org/apache/iceberg/rest/ParserContext.java index 56a68fe3cf..c89d0ac5bc 100644 --- a/core/src/main/java/org/apache/iceberg/rest/ParserContext.java +++ b/core/src/main/java/org/apache/iceberg/rest/ParserContext.java @@ -40,11 +40,11 @@ public class ParserContext { return new InjectableValues.Std(data); } - static Builder builder() { + public static Builder builder() { return new Builder(); } - static class Builder { + public static class Builder { private final Map<String, Object> data = Maps.newHashMap(); private Builder() {}
