Polish ByteBufferPublisherInputStream exception handling
This commit is contained in:
@@ -20,7 +20,6 @@ import org.reactivestreams.Publisher;
|
||||
import org.reactivestreams.Subscription;
|
||||
import org.springframework.util.Assert;
|
||||
import reactor.Publishers;
|
||||
import reactor.core.error.CancelException;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
@@ -140,10 +139,6 @@ public class ByteBufferPublisherInputStream extends InputStream {
|
||||
return this.currentStream;
|
||||
}
|
||||
}
|
||||
catch (CancelException ce) {
|
||||
this.completed = true;
|
||||
return null;
|
||||
}
|
||||
catch (InterruptedException ex) {
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user