MCPcopy Create free account
hub / github.com/GraxCode/zelixkiller / read

Method read

src/me/lpk/mapping/loaders/ProguardLoader.java:68–76  ·  view source on GitHub ↗

Returns a map of MappedClasses based on the nodes given in the constructor and the mapping file read through the parameter. @param in FileReader of the Proguard mappings file @return

(FileReader in)

Source from the content-addressed store, hash-verified

66 * @return
67 */
68 @Override
69 public Map<String, MappedClass> read(FileReader in) {
70 try {
71 return read(new BufferedReader(in));
72 } catch (Exception e) {
73 e.printStackTrace();
74 }
75 return null;
76 }
77
78 /**
79 * Reads each line in a reader and parses mappings from the Proguard format.

Callers 1

mappingsFromProguardMethod · 0.95

Calls 14

readClassMethod · 0.95
isMethodMethod · 0.95
addMethodMethod · 0.95
addFieldMethod · 0.95
linkMappingsMethod · 0.95
getFieldsMethod · 0.95
fixDescReverseMethod · 0.95
getMethodsMethod · 0.95
containsMethod · 0.80
getOriginalNameMethod · 0.80
getNewNameMethod · 0.80
setDescMethod · 0.80

Tested by

no test coverage detected