Details
-
Type:
Enhancement
-
Status: Resolved
-
Priority:
P5
-
Resolution: Fixed
-
Affects Version/s: 17
-
Fix Version/s: 18
-
Component/s: client-libs
-
Labels:
-
Subcomponent:
-
Resolved In Build:b18
Description
In several places, String.compareTo was _compared_ with 0 ( via `== 0` or `!= 0`).
Instead of this, we can use String.equals calls. String.equals is faster and shorter.
Instead of this, we can use String.equals calls. String.equals is faster and shorter.