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)
| 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. |
no test coverage detected