mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
8 lines
150 B
Java
8 lines
150 B
Java
package zmodem.xfer.io;
|
|
|
|
import java.io.IOException;
|
|
|
|
public abstract class ObjectInputStream<T> {
|
|
public abstract T read() throws IOException;
|
|
}
|