Source should be Java 6, don't use diamond operator.

This commit is contained in:
akwizgran
2015-12-02 13:22:23 +00:00
parent 79d9b4b6af
commit c65ea9a896

View File

@@ -14,7 +14,7 @@ public class AndroidUtils {
@SuppressLint("NewApi")
@SuppressWarnings("deprecation")
public static Collection<String> getSupportedArchitectures() {
List<String> abis = new ArrayList<>();
List<String> abis = new ArrayList<String>();
if (Build.VERSION.SDK_INT >= 21) {
abis.addAll(Arrays.asList(Build.SUPPORTED_ABIS));
} else {