Update Item.java

pull/69/head
FongMi 3 years ago
parent 44776ec440
commit cbdf599d0a
  1. 3
      app/src/main/java/com/github/catvod/bean/alist/Item.java

@ -36,8 +36,7 @@ public class Item {
}
public static List<Item> arrayFrom(String str) {
Type listType = new TypeToken<List<Item>>() {
}.getType();
Type listType = new TypeToken<List<Item>>() {}.getType();
return new Gson().fromJson(str, listType);
}

Loading…
Cancel
Save