Skip to content

Commit

Permalink
Merge branch 'hotfix-0.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierocks committed Jul 16, 2018
2 parents 7ede43b + 323b2b2 commit 1a18f23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ targetCompatibility = '1.8'

group = 'me.jamiemansfield'
archivesBaseName = project.name.toLowerCase()
version = '0.3.1'
version = '0.3.2'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,7 @@ public void write(final MappingSet mappings) {
* @param mapping The class mapping
*/
protected void writeClassMapping(final ClassMapping<?> mapping) {
// Check if the mapping should be written, and if so write it
if (mapping.hasDeobfuscatedName()) {
this.writer.println(String.format("%s %s", mapping.getFullObfuscatedName(), mapping.getFullDeobfuscatedName()));
}
this.writer.println(String.format("%s %s", mapping.getFullObfuscatedName(), mapping.getFullDeobfuscatedName()));

// Write field mappings
mapping.getFieldMappings().stream()
Expand Down

0 comments on commit 1a18f23

Please sign in to comment.