MCPcopy Create free account
hub / github.com/Maschell/JNUSTool / notInNUS

Method notInNUS

src/de/mas/jnustool/FST.java:345–353  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

343 }
344
345 public String notInNUS() {
346 StringBuilder sb = new StringBuilder();
347 for(FEntry f: getFileEntries()){
348 if(!f.isDir() && !f.isInNUSTitle()){
349 sb.append(f.getFullPath() + " " + String.format("%8.2f MB ", f.getFileLength()/1024.0/1024.0) + "\n");
350 }
351 }
352 return sb.toString();
353 }
354
355 public Directory<FEntry> getFSTDirectory() {
356 return FSTDirectory;

Callers

nothing calls this directly

Calls 6

getFileEntriesMethod · 0.95
isDirMethod · 0.80
isInNUSTitleMethod · 0.80
getFullPathMethod · 0.80
getFileLengthMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected