Skip to content

Commit 44dd4f7

Browse files
committed
Make the DOUBLE_TYPE constant public in DefaultJobParametersConverter
This commit changes the visibility of the DOUBLE_TYPE constant to be consistent with other constants.
1 parent 4e35709 commit 44dd4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-batch-core/src/main/java/org/springframework/batch/core/converter/DefaultJobParametersConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class DefaultJobParametersConverter implements JobParametersConverter {
8282
/**
8383
* Parameter key suffix representing the double type.
8484
*/
85-
private static final String DOUBLE_TYPE = "(double)";
85+
public static final String DOUBLE_TYPE = "(double)";
8686

8787
private static final String NON_IDENTIFYING_FLAG = "-";
8888

0 commit comments

Comments
 (0)