Skip to content

Commit 30cee99

Browse files
committed
Remove unused constructor in SkipWrapper
This constructor does not make sense as it does not accept the skipped item.
1 parent 87e69f3 commit 30cee99

File tree

1 file changed

+0
-7
lines changed
  • spring-batch-infrastructure/src/main/java/org/springframework/batch/item

1 file changed

+0
-7
lines changed

spring-batch-infrastructure/src/main/java/org/springframework/batch/item/SkipWrapper.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ public SkipWrapper(T item) {
3838
this(item, null);
3939
}
4040

41-
/**
42-
* @param e instance of {@link Throwable} that being wrapped.
43-
*/
44-
public SkipWrapper(Throwable e) {
45-
this(null, e);
46-
}
47-
4841
public SkipWrapper(T item, @Nullable Throwable e) {
4942
this.item = item;
5043
this.exception = e;

0 commit comments

Comments
 (0)