You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/transform/DefaultFieldSet.java
+7-7
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@
33
33
importorg.springframework.util.StringUtils;
34
34
35
35
/**
36
-
* Default implementation of {@link FieldSet} using Java using Java primitive and standard
37
-
* types and utilities. Strings are trimmed before parsing by default, and so are plain
38
-
* String values.
36
+
* Default implementation of {@link FieldSet} using Java primitive and standard types and
37
+
* utilities. Strings are trimmed before parsing by default, and so are plain String
38
+
* values.
39
39
*
40
40
* @author Rob Harrop
41
41
* @author Dave Syer
@@ -65,8 +65,8 @@ public class DefaultFieldSet implements FieldSet {
65
65
privateList<String> names;
66
66
67
67
/**
68
-
* The {@link NumberFormat} to use for parsing numbers. If unset the US locale will be
69
-
* used ('.' as decimal place).
68
+
* The {@link NumberFormat} to use for parsing numbers. If unset the {@link Locale#US}
69
+
* will be used ('.' as decimal place).
70
70
* @param numberFormat the {@link NumberFormat} to use for number parsing
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/transform/DefaultFieldSetFactory.java
+6-5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2009-2012 the original author or authors.
2
+
* Copyright 2009-2023 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -23,6 +23,7 @@
23
23
* {@link FieldSet} required. Returns a {@link DefaultFieldSet} from both factory methods.
0 commit comments