We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
component { public void function foo() { var aA = 1; } }
will produce the issue:
<issue severity="WARNING" id="PLUGIN_ERRORclass java.lang.NullPointerException" message="PLUGIN_ERRORclass java.lang.NullPointerException" category="CFLint" abbrev="PE"> <location file="C:\Code\cflint-test\.\ajaxproduct.cfc" fileName="ajaxproduct.cfc" function="foo" column="3" line="4" message="PLUGIN_ERRORclass java.lang.NullPointerException" variable=""> <Expression><![CDATA[var aA = 1]]></Expression> </location> </issue>
where the id attribute should only containt PLUGIN_ERROR but instead also has the appended classname of the exception that triggered the error.
id
PLUGIN_ERROR
The text was updated successfully, but these errors were encountered:
#245 fixed
1d98922
No branches or pull requests
The following code:
will produce the issue:
where the
id
attribute should only containtPLUGIN_ERROR
but instead also has the appended classname of the exception that triggered the error.The text was updated successfully, but these errors were encountered: