This commit is contained in:
@@ -34,6 +34,9 @@ public static void main(String[] args) throws Throwable {
|
|||||||
if (!line.endsWith(".java")) continue;
|
if (!line.endsWith(".java")) continue;
|
||||||
File srcfile = new File(srcasmroot, line);
|
File srcfile = new File(srcasmroot, line);
|
||||||
File destfile = new File(destasmroot, line);
|
File destfile = new File(destasmroot, line);
|
||||||
Files.copy(srcfile.toPath(), destfile.toPath());
|
String content = Utility.readThenClose(new FileInputStream(srcfile));
|
||||||
|
FileOutputStream out = new FileOutputStream(destfile);
|
||||||
|
out.write(content.replace("jdk.internal.org.objectweb", "org.redkale").getBytes());
|
||||||
|
out.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user