Sebastien Andrivet cdf572bb12
Modify rule S6376: Change text to education framework format (APPSEC-1109) (#3161)
## Review

A dedicated reviewer checked the rule description successfully for:

- [ ] logical errors and incorrect information
- [ ] information gaps and missing content
- [ ] text style and tone
- [ ] PR summary and labels follow [the
guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
2023-09-29 14:39:25 +02:00

24 lines
515 B
Plaintext

== How to fix it in Jdom2
=== Code examples
==== Noncompliant code example
[source,java,diff-id=3,diff-type=noncompliant]
----
import org.jdom2.input.SAXBuilder;
SAXBuilder builder = new SAXBuilder();
builder.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, false); // Noncompliant
----
==== Compliant solution
[source,java,diff-id=3,diff-type=compliant]
----
import org.jdom2.input.SAXBuilder;
SAXBuilder builder = new SAXBuilder();
builder.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
----