int32_t maxLen = 0;
UVector *results = handler.getMatches(maxLen);
- if ((results != NULL && (maxLen == (text.length() - start))) || fGNamesTrieFullyLoaded) {
+ if (results != NULL && ((maxLen == (text.length() - start)) || fGNamesTrieFullyLoaded)) {
// perfect match
gmatchInfo = new TimeZoneGenericNameMatchInfo(results);
if (gmatchInfo == NULL) {
int32_t maxLen = 0;
UVector *results = handler.getMatches(maxLen);
- if ((results != NULL && (maxLen == (text.length() - start))) || fNamesTrieFullyLoaded) {
+ if (results != NULL && ((maxLen == (text.length() - start)) || fNamesTrieFullyLoaded)) {
// perfect match
matchInfo = new TimeZoneNameMatchInfoImpl(results);
if (matchInfo == NULL) {