Skip to content

Commit

Permalink
Fix for resource keys (need to avoid renaming) in release build.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-dove committed Oct 12, 2020
1 parent 74be256 commit 6f75df7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ private void writeResourceBundle(BufferedReader br, String bundleClassName, File
value = value.substring(0, value.length() - 1);
value += br.readLine();
}
sb.append(propName + ": \"" + value + "\",\n");
sb.append("'" + propName + "' : \"" + value + "\",\n");
}
}
sb.append("__end_of_bundle__: 0\n};};\n");
Expand Down

0 comments on commit 6f75df7

Please sign in to comment.