Remove unused constructor in SkipWrapper
This constructor does not make sense as it does not accept the skipped item.
This commit is contained in:
@@ -38,13 +38,6 @@ public class SkipWrapper<T> {
|
||||
this(item, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param e instance of {@link Throwable} that being wrapped.
|
||||
*/
|
||||
public SkipWrapper(Throwable e) {
|
||||
this(null, e);
|
||||
}
|
||||
|
||||
public SkipWrapper(T item, @Nullable Throwable e) {
|
||||
this.item = item;
|
||||
this.exception = e;
|
||||
|
||||
Reference in New Issue
Block a user