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 SRG mappings file @return
(FileReader in)
| 48 | * @return |
| 49 | */ |
| 50 | @Override |
| 51 | public Map<String, MappedClass> read(FileReader in) { |
| 52 | try { |
| 53 | return read(new BufferedReader(in)); |
| 54 | } catch (Exception e) { |
| 55 | e.printStackTrace(); |
| 56 | } |
| 57 | return null; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Reads each line in a reader and parses mappings from the SRG format. |
no test coverage detected