fix: error in reading srg methods

This commit is contained in:
zaaarf 2023-02-27 00:46:27 +01:00
parent b918a7ccc8
commit 13775e9d6d
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -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]);
}
}
}