Make FilterInputStream abstract
This commit is contained in:
parent
e1e9e1a6e1
commit
63d18d5e05
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue