Skip to content

Commit 55b6de6

Browse files
committed
Fix javadoc errors
1 parent 0348196 commit 55b6de6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/main/java/build/buf/protovalidate/internal/evaluator/EvaluatorBuilder.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public class EvaluatorBuilder {
6161
*
6262
* @param env The CEL environment for evaluation.
6363
* @param disableLazy Determines whether lazy loading of evaluators is disabled.
64+
* @param typeRegistry Type registry used for resolving unknown messages.
65+
* @param extensionRegistry Extension registry used for resolving unknown extensions.
6466
*/
6567
public EvaluatorBuilder(
6668
Env env,

src/main/java/build/buf/protovalidate/internal/expression/Variable.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ public static Variable newRulesVariable(Object val) {
7171
/**
7272
* Creates a "rule" variable.
7373
*
74-
* @param val the value.
74+
* @param rules the value of the "rules" variable.
75+
* @param val the value of the "rule" variable.
7576
* @return {@link Variable}.
7677
*/
7778
public static Variable newRuleVariable(Object rules, Object val) {

0 commit comments

Comments
 (0)