Revert "Add length-equality test in String operator== checks."

This reverts commit e28210d401ae4ed1258b84c9b17a172a757190e8.
diff --git a/include/utils/String16.h b/include/utils/String16.h
index d98b2d0..07a0c11 100644
--- a/include/utils/String16.h
+++ b/include/utils/String16.h
@@ -205,9 +205,7 @@
 
 inline bool String16::operator==(const String16& other) const
 {
-    const size_t n1 = size();
-    const size_t n2 = other.size();
-    return n1 == n2 && strzcmp16(mString, n1, other.mString, n2) == 0;
+    return strzcmp16(mString, size(), other.mString, other.size()) == 0;
 }
 
 inline bool String16::operator!=(const String16& other) const