Make FilterInputStream abstract

This commit is contained in:
javanna 2015-08-06 12:55:57 +02:00 committed by Luca Cavanna
parent e1e9e1a6e1
commit 63d18d5e05
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import java.io.IOException;
/**
* Wraps a {@link StreamInput} and delegates to it. To be used to add functionality to an existing stream by subclassing.
*/
public class FilterStreamInput extends StreamInput {
public abstract class FilterStreamInput extends StreamInput {
private final StreamInput delegate;