Opens the given file for reading
(File f)
| 51 | * Opens the given file for reading |
| 52 | */ |
| 53 | public OpusFile(File f) throws IOException, FileNotFoundException { |
| 54 | this(new OggFile(new FileInputStream(f))); |
| 55 | } |
| 56 | /** |
| 57 | * Opens the given file for reading |
| 58 | */ |
nothing calls this directly
no test coverage detected