rspec/rules/S3033/java/rule.adoc

26 lines
483 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
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.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
StringBuilder sb = new StringBuilder();
// ...
if ("".equals(sb.toString()) { // Noncompliant
// ...
}
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
StringBuilder sb = new StringBuilder();
// ...
if (sb.length() == 0) {
// ...
}
----