Open ProfJanetDavis opened 5 years ago
[9:32am] janet@wks-14-232 (~/370/Grading/project-5-8-teamuno/src): javac -Xlint:unchecked tunecomposer/*.java tunecomposer/Gesture.java:72: warning: [unchecked] unchecked call to addAll(Collection extends E>) as a member of the raw type AbstractCollection notes.addAll(p.getChildLeaves()); ^ where E is a type-variable: E extends Object declared in class AbstractCollection tunecomposer/Gesture.java:74: warning: [unchecked] unchecked conversion return notes; ^ required: HashSetfound: HashSet tunecomposer/GroupCommand.java:20: warning: [unchecked] unchecked method invocation: method groupedConstructor in class GroupCommand is applied to given types if(wasGrouped){groupedConstructor(stuff);} ^ required: HashSet found: HashSet tunecomposer/GroupCommand.java:20: warning: [unchecked] unchecked conversion if(wasGrouped){groupedConstructor(stuff);} ^ required: HashSet found: HashSet tunecomposer/GroupCommand.java:21: warning: [unchecked] unchecked method invocation: method ungroupedConstructor in class GroupCommand is applied to given types else{ungroupedConstructor(stuff);} ^ required: HashSet > found: HashSet tunecomposer/GroupCommand.java:21: warning: [unchecked] unchecked conversion else{ungroupedConstructor(stuff);} ^ required: HashSet > found: HashSet tunecomposer/GroupCommand.java:29: warning: [unchecked] unchecked call to HashSet(Collection extends E>) as a member of the raw type HashSet toUngroup = new HashSet(grouped); ^ where E is a type-variable: E extends Object declared in class HashSet tunecomposer/GroupCommand.java:29: warning: [unchecked] unchecked conversion toUngroup = new HashSet(grouped); ^ required: HashSet found: HashSet tunecomposer/GroupCommand.java:38: warning: [unchecked] unchecked call to HashSet(Collection extends E>) as a member of the raw type HashSet toGroup = new HashSet(ungrouped); ^ where E is a type-variable: E extends Object declared in class HashSet tunecomposer/GroupCommand.java:38: warning: [unchecked] unchecked conversion toGroup = new HashSet(ungrouped); ^ required: HashSet > found: HashSet tunecomposer/MoveCommand.java:26: warning: [unchecked] unchecked conversion editedRects = edits; ^ required: Set found: Set 11 warnings