Description
Among the issues that code-flow mentioned was UseEqualsToCompareStrings (using == when comparing String objects). In String objects, == does not compare object strings but rather memory addresses. There may be issues arising from this, so we will address these issues for maintenance purposes.
Description