This is an automated email from the ASF dual-hosted git repository.
singhpk234 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new 53c046efda Core: Increase visibility of ParserContext (#14572)
53c046efda is described below
commit 53c046efda5d6c6ac67caf7de29849ab7ac6d406
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 dbca70e2c5..79d66d145f 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() {}