Details
-
Bug
-
Resolution: Unresolved
-
Minor
-
None
-
None
-
None
-
None
Description
In PropertySetter.computeAggregationType(), the switch statement should be completed:
if (addMethod != null) {
AggregationType type = computeRawAggregationType(addMethod);
switch (type)
}
to something like this (unsure whether logic correct, which is why switch statements should be completed, right?):
if (addMethod != null) {
AggregationType type = computeRawAggregationType(addMethod);
switch (type)
}