Skip to content

Commit

Permalink
add small note
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Oct 15, 2024
1 parent 39c70d8 commit 07ada75
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ private Deobfuscator(DeobfuscatorOptions options) {
LOGGER.warn("Output file already exist, data will be overwritten");
}

ClassStorage originalClasses = new ClassStorage();
LOGGER.info("Loaded {} classes from a primary source", originalClasses.compiledClasses().size());
// Those classes will be loaded by Deobfuscator#loadInput
ClassStorage compiledClasses = new ClassStorage();

ClassStorage libraries = buildLibraries();
LOGGER.info("Loaded {} classes from libraries", libraries.compiledClasses().size());

this.context = new Context(options, originalClasses, libraries);
this.context = new Context(options, compiledClasses, libraries);
}

public ClassStorage buildLibraries() {
Expand Down

0 comments on commit 07ada75

Please sign in to comment.