Skip to content

Commit 56aaa2a

Browse files
committed
review comments
Signed-off-by: MBWhite <whitemat@uk.ibm.com>
1 parent 83fa865 commit 56aaa2a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

core/src/main/java/io/substrait/dsl/SubstraitBuilder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -920,11 +920,11 @@ public Expression.I16Literal i16(final int value) {
920920
/**
921921
* Creates a 32-bit integer literal expression.
922922
*
923-
* @param value the integer value
923+
* @param v the integer value
924924
* @return a new {@link Expression.I32Literal}
925925
*/
926-
public Expression.I32Literal i32(final int value) {
927-
return Expression.I32Literal.builder().value(value).build();
926+
public Expression.I32Literal i32(int v) {
927+
return Expression.I32Literal.builder().value(v).build();
928928
}
929929

930930
/**

0 commit comments

Comments
 (0)