Skip to content

Commit ef5e526

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

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 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
/**
@@ -950,11 +950,11 @@ public Expression.FP32Literal fp32(final float value) {
950950
/**
951951
* Creates a 64-bit floating point literal expression.
952952
*
953-
* @param value the double value
953+
* @param v the double value
954954
* @return a new {@link Expression.FP64Literal}
955955
*/
956-
public Expression.FP64Literal fp64(final double value) {
957-
return Expression.FP64Literal.builder().value(value).build();
956+
public Expression.FP64Literal fp64(double v) {
957+
return Expression.FP64Literal.builder().value(v).build();
958958
}
959959

960960
/**

0 commit comments

Comments
 (0)