Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Jun 27, 2020
1 parent c2024cf commit fbfc8e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ public static String getJavaIdentifierName(Identifier identifier) {
return identifier.toString()
.replace(':', '$')
.replace('/', '$')
.replace('.', '¤')
.replace('-', '£');
.replace('.', '\u00A4' /*¤*/)
.replace('-', '\u00A3' /*£*/);
}

public static String getStaticStorageGetterName(Identifier identifier) {
Expand Down

0 comments on commit fbfc8e7

Please sign in to comment.