Skip to content

Commit

Permalink
Correct the JAM writer
Browse files Browse the repository at this point in the history
The first element of method parameter lines should be the full /obfuscated/ name.
  • Loading branch information
jamierocks committed Aug 7, 2018
1 parent 109e0ef commit d4b72dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defaultTasks 'clean', 'licenseFormat', 'build'
// Project information
allprojects {
group = 'blue.lapis.nocturne'
version = '1.1.2'
version = '1.1.3'

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ protected void writeMethodMapping(MethodMapping mapping) {
}
for (MethodParameterMapping pm : mapping.getParamMappings().values()) {
mpWriter.format("MP %s %s %s %s %s\n",
pm.getParent().getParent().getFullDeobfuscatedName(),
pm.getParent().getParent().getFullObfuscatedName(),
pm.getParent().getObfuscatedName(),
pm.getParent().getObfuscatedDescriptor(),
pm.getIndex(),
Expand Down

0 comments on commit d4b72dd

Please sign in to comment.