We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4454b3b commit 46108deCopy full SHA for 46108de
spring-expression/src/main/java/org/springframework/expression/spel/support/SimpleEvaluationContext.java
@@ -268,7 +268,7 @@ public static Builder forReadWriteDataBinding() {
268
/**
269
* Builder for {@code SimpleEvaluationContext}.
270
*/
271
- public static class Builder {
+ public static final class Builder {
272
273
private final List<PropertyAccessor> accessors;
274
@@ -280,7 +280,7 @@ public static class Builder {
280
@Nullable
281
private TypedValue rootObject;
282
283
- public Builder(PropertyAccessor... accessors) {
+ private Builder(PropertyAccessor... accessors) {
284
this.accessors = Arrays.asList(accessors);
285
}
286
0 commit comments