(byte[] decrypteddata, TitleMetaData tmd)
| 30 | private Directory<FEntry> contentDirectory = new Directory<FEntry>("root"); |
| 31 | |
| 32 | public FST(byte[] decrypteddata, TitleMetaData tmd) throws IOException { |
| 33 | parse(decrypteddata,tmd); |
| 34 | setTmd(tmd); |
| 35 | buildDirectories(); |
| 36 | |
| 37 | } |
| 38 | |
| 39 | private void buildDirectories() { |
| 40 | String contentfolder = ""; |
nothing calls this directly
no test coverage detected