Skip to content

Commit

Permalink
Remap AW into getTargetNamespace instead of named (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
heipiao233 authored Oct 22, 2023
1 parent 14c3c3c commit b822db9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public static void remap(TransformCache cache) {

private static byte[] remapAccessWidener(byte[] input, Remapper remapper) {
AccessWidenerWriter writer = new AccessWidenerWriter();
AccessWidenerRemapper remappingDecorator = new AccessWidenerRemapper(writer, remapper, "intermediary", "named");
AccessWidenerRemapper remappingDecorator = new AccessWidenerRemapper(writer, remapper, "intermediary", QuiltLauncherBase.getLauncher().getTargetNamespace());
AccessWidenerReader accessWidenerReader = new AccessWidenerReader(remappingDecorator);
accessWidenerReader.read(input, "intermediary");
return writer.write();
Expand Down

0 comments on commit b822db9

Please sign in to comment.