Skip to content

Commit

Permalink
Flush pipeline for new release build
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolykt committed Aug 27, 2022
1 parent 555217e commit 101d502
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/de/geolykt/starloader/deobf/Oaktree.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,10 @@ public static void main(String[] args) {
oakTree.guessFieldGenerics();
oakTree.inferMethodGenerics();
oakTree.inferConstructorGenerics();
oakTree.fixSwitchMaps();
oakTree.fixForeachOnArray();
oakTree.fixComparators(true);
oakTree.guessAnonymousClasses();
oakTree.fixSwitchMaps();
long startStep = System.currentTimeMillis();
oakTree.applyInnerclasses();
System.out.println("Applied inner class nodes to referencing classes. (" + (System.currentTimeMillis() - startStep) + " ms)");
Expand Down Expand Up @@ -2394,6 +2394,7 @@ public void lambdaStreamGenericSignatureGuessing(final Map<FieldReference, Class

public void write(OutputStream out) throws IOException {
JarOutputStream jarOut = new JarOutputStream(out);
// TODO: Write nodes in alphabetic order to preserve consistency
for (ClassNode node : nodes) {
ClassWriter writer = new ClassWriter(0);
node.accept(writer);
Expand All @@ -2419,6 +2420,7 @@ public void write(@NotNull OutputStream out, @NotNull Path resources) throws IOE
throw new IOException("The path (" + resources.toString() + ") specified by \"resources\" does not exist.");
}
JarOutputStream jarOut = new JarOutputStream(out);
// TODO: Write nodes in alphabetic order to preserve consistency
for (ClassNode node : nodes) {
ClassWriter writer = new ClassWriter(0);
node.accept(writer);
Expand Down

0 comments on commit 101d502

Please sign in to comment.