Skip to content

Commit

Permalink
fix(obfuscator): fixed maven
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalsin committed Jun 19, 2022
1 parent 62f5f3a commit a36512b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public static void main(String[] args) throws Exception {
String appName = f.getName().substring(0, f.getName().length() - 4);
ApplicationClassSource app = new ApplicationClassSource(
appName,
false,
dl.getJarContents().getClassContents().stream().map(JarClassData::getClassNode).collect(Collectors.toList())
);
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public static void main(String[] args) throws Exception {
String appName = f.getName().substring(0, f.getName().length() - 4);
ApplicationClassSource app = new ApplicationClassSource(
appName,
false,
dl.getJarContents().getClassContents().stream().map(JarClassData::getClassNode).collect(Collectors.toList())
);
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public static void main(String[] args) throws Exception {
String appName = f.getName().substring(0, f.getName().length() - 4);
ApplicationClassSource app = new ApplicationClassSource(
appName,
false,
dl.getJarContents().getClassContents().stream().map(JarClassData::getClassNode).collect(Collectors.toList())
);
//
Expand Down

0 comments on commit a36512b

Please sign in to comment.