-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
When I go to build this application, I get errors on all of the ArrayLists. I was able to resolve them by giving them explicit types. For example on line 64 of the Products Controller:
List<Tag> tags = new ArrayList<>();Gives me an error: illegal start of type
When I change it to:
List<Tag> tags = new ArrayList<Tag>();The application compiles and runs just fine. I'm not experienced with Java at all so this might be an oversight with my configuration.
Metadata
Metadata
Assignees
Labels
No labels
