File tree Expand file tree Collapse file tree
core/src/main/java/io/substrait/dsl Expand file tree Collapse file tree Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments