mirror of
https://github.com/revanced/smali.git
synced 2025-05-08 02:14:32 +02:00
Use a java 6-friendly string joiner
This commit is contained in:
parent
3735d4778f
commit
4254a2073a
@ -31,9 +31,7 @@
|
||||
|
||||
package org.jf.dexlib2.analysis;
|
||||
|
||||
import com.google.common.base.Predicates;
|
||||
import com.google.common.base.Supplier;
|
||||
import com.google.common.base.Suppliers;
|
||||
import com.google.common.base.*;
|
||||
import com.google.common.collect.*;
|
||||
import com.google.common.primitives.Ints;
|
||||
import org.jf.dexlib2.AccessFlags;
|
||||
@ -219,7 +217,7 @@ public class ClassProto implements TypeProto {
|
||||
|
||||
if (!interfacesFullyResolved) {
|
||||
throw new UnresolvedClassException("Interfaces for class %s not fully resolved: %s", getType(),
|
||||
String.join(",", getUnresolvedInterfaces()));
|
||||
Joiner.on(",").join(getUnresolvedInterfaces()));
|
||||
}
|
||||
|
||||
return directInterfaces;
|
||||
|
Loading…
x
Reference in New Issue
Block a user