MCPcopy Create free account
hub / github.com/demoth/jake2 / Path_f

Method Path_f

qcommon/src/main/java/jake2/qcommon/filesystem/FS.java:730–741  ·  view source on GitHub ↗

Shows all current search paths and links

()

Source from the content-addressed store, hash-verified

728 * Shows all current search paths and links
729 */
730 private static void Path_f() {
731 for (SearchPath s : searchPaths) {
732 Com.Printf(s.toString() + "\n");
733 }
734
735 if (!fs_links.isEmpty()) {
736 Com.Printf("\nLinks:\n");
737 for (filelink_t link : fs_links) {
738 Com.Printf(link.from + " : " + link.to + '\n');
739 }
740 }
741 }
742
743 /**
744 * Allows enumerating all of the directories in the search path

Callers 1

InitFilesystemMethod · 0.95

Calls 2

PrintfMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected