Commit | Line | Data |
---|---|---|
2c66fdcb NR |
1 | package be.nikiroo.utils; |
2 | ||
3 | import java.io.File; | |
4 | import java.io.FileInputStream; | |
5 | import java.io.FileNotFoundException; | |
6 | ||
7 | /** | |
8 | * Class was moved to {@link be.nikiroo.utils.streams.MarkableFileInputStream}. | |
9 | * | |
10 | * @author niki | |
11 | */ | |
12 | @Deprecated | |
13 | public class MarkableFileInputStream extends | |
14 | be.nikiroo.utils.streams.MarkableFileInputStream { | |
15 | public MarkableFileInputStream(File file) throws FileNotFoundException { | |
16 | super(file); | |
17 | } | |
18 | ||
19 | public MarkableFileInputStream(FileInputStream fis) { | |
20 | super(fis); | |
21 | } | |
22 | } |