You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like there is a //TODO on the code for flagging a scoped argument as used. Do you happen to know what that status of this is? It creates a lot of false positives at the moment. Thanks!
String name = identifier.getName().toLowerCase();
if (name.equals("arguments")) {
name = identifier.Decompile(0).toLowerCase().replace("arguments.", ""); // TODO
// better
// way
// of
// doing
// this?
}
if (methodArguments.get(name) != null) {
methodArguments.put(name, true);
}
}```
The text was updated successfully, but these errors were encountered:
It looks like there is a //TODO on the code for flagging a scoped argument as used. Do you happen to know what that status of this is? It creates a lot of false positives at the moment. Thanks!
https://github.com/cflint/CFLint/blob/dev/src/main/java/com/cflint/plugins/core/UnusedArgumentChecker.java
The text was updated successfully, but these errors were encountered: