File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
spring-batch-core/src/main/java/org/springframework/batch/core Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2006-2022 the original author or authors.
2
+ * Copyright 2006-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.
30
30
* @author Dave Syer
31
31
* @author Michael Minella
32
32
* @author Mahmoud Ben Hassine
33
+ * @author Song JaeGeun
33
34
* @since 2.0
34
35
*
35
36
*/
@@ -49,7 +50,7 @@ public class JobParameter<T> implements Serializable {
49
50
*/
50
51
public JobParameter (@ NonNull T value , @ NonNull Class <T > type , boolean identifying ) {
51
52
Assert .notNull (value , "value must not be null" );
52
- Assert .notNull (value , "type must not be null" );
53
+ Assert .notNull (type , "type must not be null" );
53
54
this .value = value ;
54
55
this .type = type ;
55
56
this .identifying = identifying ;
You can’t perform that action at this time.
0 commit comments