You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See example below, not sure if that would be a good fit for add
public static void main(String[] args) {
List<Task> list = new ArrayList<Task>();
for (int i = 0; i < 20; i++) {
new Task(i, "Test1", "Test2", Task.Status.ASSIGNED, 10).add[HERE I AM]
}
}
The text was updated successfully, but these errors were encountered:
Unfortunately, I don't know why the used collection variable (already implemented by JDT) is not resolving to list in this scenario. I have to do some debugging I guess.
Anyway, it would be great if the existing implementation of the collection variable could be extended to allow the definition of the type of the proposed collections:
See example below, not sure if that would be a good fit for add
public static void main(String[] args) {
List<Task> list = new ArrayList<Task>();
for (int i = 0; i < 20; i++) {
new Task(i, "Test1", "Test2", Task.Status.ASSIGNED, 10).add[HERE I AM]
}
}
The text was updated successfully, but these errors were encountered: