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
By now, for each analysis there is only one produced vulnerabilityType. However, there are analyzers that produce more than one type of vulnerability which should be reflected in report.
UnusedVariableAnalyzer should produce something like unused variable, unused parameter and unused return value
NpeAnalyzer can also produce something like redundant null check.
We should rework these analyzers (and maybe some interfaces) so that analyzers could easily produce different type of vulnerabilities
The text was updated successfully, but these errors were encountered:
By now, for each analysis there is only one produced
vulnerabilityType
. However, there are analyzers that produce more than one type of vulnerability which should be reflected in report.UnusedVariableAnalyzer
should produce something likeunused variable
,unused parameter
andunused return value
NpeAnalyzer
can also produce something likeredundant null check
.We should rework these analyzers (and maybe some interfaces) so that analyzers could easily produce different type of vulnerabilities
The text was updated successfully, but these errors were encountered: