mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 17:29:20 +01:00
fix: last commit made it even worse
This commit is contained in:
parent
032d43d63c
commit
716a19c5a5
1 changed files with 9 additions and 2 deletions
|
@ -188,12 +188,19 @@ public class ObfuscationMapper {
|
||||||
* @throws AmbiguousDefinitionException if not enough data was given to uniquely identify a mapping
|
* @throws AmbiguousDefinitionException if not enough data was given to uniquely identify a mapping
|
||||||
*/
|
*/
|
||||||
public String get(String memberName, String methodDescriptor) {
|
public String get(String memberName, String methodDescriptor) {
|
||||||
|
|
||||||
//find all keys that start with the name
|
//find all keys that start with the name
|
||||||
List<String> candidates = members.keySet().stream().filter(m -> m.equals(memberName.split(" ")[0])).collect(Collectors.toList());
|
List<String> candidates = members.keySet().stream().filter(
|
||||||
|
m -> m.split(" ")[0].equals(memberName)
|
||||||
|
).collect(Collectors.toList());
|
||||||
|
|
||||||
if(methodDescriptor != null) {
|
if(methodDescriptor != null) {
|
||||||
String signature = String.format("%s %s", memberName, methodDescriptor);
|
String signature = String.format("%s %s", memberName, methodDescriptor);
|
||||||
candidates = candidates.stream().filter(m -> m.equals(signature)).collect(Collectors.toList());
|
candidates = candidates.stream().filter(
|
||||||
|
m -> m.equals(signature)
|
||||||
|
).collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(candidates.size()) {
|
switch(candidates.size()) {
|
||||||
case 0:
|
case 0:
|
||||||
throw new MappingNotFoundException(String.format(
|
throw new MappingNotFoundException(String.format(
|
||||||
|
|
Loading…
Reference in a new issue