Skip to content

Commit

Permalink
added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Feb 5, 2024
1 parent 666d19e commit 3da692d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ public void checkNoTypeNameShadowing(XtendTypeDeclaration type) {

@Check
public void checkMemberNamesAreUnique(XtendTypeDeclaration xtendType) {
// duplicated standard fields and duplicated nested types are checked by JvmGenericTypeValidator
final Multimap<JvmType, XtendField> type2extension = HashMultimap.create();
for (XtendMember member : xtendType.getMembers()) {
if (member instanceof XtendField) {
Expand Down

0 comments on commit 3da692d

Please sign in to comment.