All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.java.S5664.html Maven / Gradle / Ivy

There is a newer version: 8.10.0.38194
Show newest version

Why is this an issue?

Either use only spaces or only tabs for the indentation of a text block. Mixing white space will lead to a result with irregular indentation.

Noncompliant code example

String textBlock = """
        this is
<tab>text block!
        !!!!
      """;

Compliant solution

String textBlock = """
        this is
        text block!
        !!!!
      """;

Resources





© 2015 - 2025 Weber Informatics LLC | Privacy Policy