Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdurazaaqMohammed committed Jan 2, 2025
1 parent 784bb27 commit f5247d9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
Binary file modified libs/ARSCLib.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/com/reandroid/apkeditor/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.Iterator;
import java.util.List;
import java.util.Properties;
import java.util.function.Predicate;
import org.apache.commons.collections4.Predicate;

public class Util {
public static boolean isHelp(String[] args){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import com.reandroid.utils.collection.EmptyList;

import java.util.List;
import java.util.function.Predicate;
import org.apache.commons.collections4.Predicate;

public class AndroidManifestHelper {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/reandroid/apkeditor/merge/Merger.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import java.util.function.Predicate;
import org.apache.commons.collections4.Predicate;

public class Merger extends CommandExecutor<MergerOptions> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ private String[] loadDictionary(File file, String resource) {
}
ArrayCollection<String> results = new ArrayCollection<>(
StringsUtil.split(full, '\n', true));
results.removeIf(StringsUtil::isEmpty);
results.removeIf(new org.apache.commons.collections4.Predicate<String>() {
@Override
public boolean evaluate(String text) {
return StringsUtil.isEmpty(text);
}
});
return results.toArray(new String[results.size()]);
}
public boolean isKeepType(String type) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.function.Predicate;
import org.apache.commons.collections4.Predicate;

public class SmaliDecompiler implements DexDecoder {

Expand Down

0 comments on commit f5247d9

Please sign in to comment.