Closed pnrobinson closed 6 years ago
In AnnotateTabController
// TODO currently, this list is taking both HPO_CLass_Found and String at different parts of the app. @FXML private ListView hpoListView;
We should have a list take only one data type, and the type should always be declared. I tried this
@FXML private ListView<HPO_Class_Found> hpoListView;
But there is one place in the code where the list is being initialized with a String.
This has been addressed.
In AnnotateTabController
We should have a list take only one data type, and the type should always be declared. I tried this
But there is one place in the code where the list is being initialized with a String.