rspec/rules/S3033/java/rule.adoc
Fred Tingaud 16f6c0aecf
Inline adoc when include has no additional value (#1940)
Inline adoc files when they are included exactly once.

Also fix language tags because this inlining gives us better information
on what language the code is written in.
2023-05-25 14:18:12 +02:00

42 lines
746 B
Plaintext

== Why is this an issue?
Assembling a ``++StringBuilder++`` or ``++StringBuffer++`` into a ``++String++`` merely to see if it's empty is a waste of cycles. Instead, jump right to the heart of the matter and get its ``++.length()++`` instead.
=== Noncompliant code example
[source,java]
----
StringBuilder sb = new StringBuilder();
// ...
if ("".equals(sb.toString()) { // Noncompliant
// ...
}
----
=== Compliant solution
[source,java]
----
StringBuilder sb = new StringBuilder();
// ...
if (sb.length() == 0) {
// ...
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Test "xxx.length()" against 0 to see if "xxx" is empty.
endif::env-github,rspecator-view[]