We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45e9957 + aec151d commit 65a11e4Copy full SHA for 65a11e4
cpp/ql/src/Architecture/Refactoring Opportunities/ClassesWithManyFields.ql
@@ -168,12 +168,7 @@ where
168
strictcount(string fieldName |
169
exists(Field f |
170
f.getDeclaringType() = c and
171
- fieldName = f.getName() and
172
- // IBOutlet's are a way of building GUIs
173
- // automatically out of ObjC properties.
174
- // We don't want to count those for the
175
- // purposes of this query.
176
- not f.getType().getAnAttribute().hasName("iboutlet")
+ fieldName = f.getName()
177
)
178
) and
179
n > 15 and
0 commit comments