File tree 1 file changed +3
-3
lines changed
src/main/java/build/buf/protovalidate 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,9 +98,9 @@ public List<Value> repeatedValue() {
98
98
99
99
// TODO - This is essentially the same functionality as `mapValue` except that it
100
100
// returns a Map of Objects rather than a Map of protovalidate-java Value.
101
- // Trying to bind to a variable (i.e. `this`) using a Map of Values does not work
102
- // because CEL-Java doesn't know how to interpret a
103
- private Map <Object , Object > getMapBinding () {
101
+ // Trying to bind a Map of Values to a CEL variable (i.e. `this`) does not work
102
+ // because CEL-Java doesn't know how to interpret that proprietary Value object.
103
+ private Map <Object , Object > mapValueAsObject () {
104
104
List <AbstractMessage > input =
105
105
value instanceof List
106
106
? (List <AbstractMessage >) value
You can’t perform that action at this time.
0 commit comments