Skip to content

Commit

Permalink
fix(obfuscator): deprecated all of our nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalsin committed Jun 19, 2022
1 parent a36512b commit 24075d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ private Object _getArrayType(final StringBuilder builder, final Type array) {
}
}

@Deprecated
private void computeFramesNew() {
if (cfg.getEntries().size() != 1)
throw new IllegalStateException("CFG doesn't have exactly 1 entry");
Expand Down Expand Up @@ -631,6 +632,7 @@ public boolean test(FlowEdge<BasicBlock> basicBlockFlowEdge) {
}*/
}

@Deprecated
private void computeFrames() {
if (cfg.getEntries().size() != 1)
throw new IllegalStateException("CFG doesn't have exactly 1 entry");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import java.util.*;
import java.util.stream.Collectors;

@Deprecated
public class Frame {
private final Skidfuscator skidfuscator;
private final Map<Frame, Set<Stmt>> parents;
Expand Down

0 comments on commit 24075d4

Please sign in to comment.