smmdbapi part 3.1

code clean up
This commit is contained in:
Jannik
2017-06-16 16:37:56 +02:00
parent 224e4e6eec
commit 4ce6c06d2f
9 changed files with 2 additions and 1 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2 -1
View File
@@ -199,6 +199,7 @@ public class MainWindowController {
File pictureCacheWin = new File(dirWin+"/picture_cache"); File pictureCacheWin = new File(dirWin+"/picture_cache");
File pictureCacheLinux = new File(dirLinux+"/picture_cache"); File pictureCacheLinux = new File(dirLinux+"/picture_cache");
private ObservableList<uiDataType> games = FXCollections.observableArrayList(); private ObservableList<uiDataType> games = FXCollections.observableArrayList();
ObservableList<SmmdbApiDataType> courses = FXCollections.observableArrayList();
Properties props = new Properties(); Properties props = new Properties();
Properties gameProps = new Properties(); Properties gameProps = new Properties();
private MenuItem edit = new MenuItem("edit"); private MenuItem edit = new MenuItem("edit");
@@ -548,7 +549,7 @@ public class MainWindowController {
} }
//start query //start query
ArrayList<SmmdbApiDataType> courses = new ArrayList<>(smmdbApiQuery.startQuery()); courses.addAll(smmdbApiQuery.startQuery());
System.out.println("size: " + courses.size()); System.out.println("size: " + courses.size());
System.out.println(courses.get(3).getNintendoid()); System.out.println(courses.get(3).getNintendoid());