mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-10 01:29:22 +01:00
fix: error in reading srg methods
This commit is contained in:
parent
b918a7ccc8
commit
13775e9d6d
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ public class SrgMapper {
|
|||
if(split.length == 2) //field
|
||||
members.put(split[0], split[1]);
|
||||
else if (split.length == 3) //method
|
||||
members.put(split[0] + split[1], split[2]);
|
||||
members.put(split[0] + " " + split[1], split[2]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue