From b8d86800487df4021860f08407c323ed82243c79 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 1 Dec 2017 22:52:42 +0000 Subject: Get rid of else after break/continue/return. Change-Id: I3efc57cd7325d16e3ca8ebdeeaec06012b2c56e3 Reviewed-on: https://pdfium-review.googlesource.com/20110 Reviewed-by: Henrique Nakashima Commit-Queue: Lei Zhang --- fxjs/cfxjse_resolveprocessor.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'fxjs') diff --git a/fxjs/cfxjse_resolveprocessor.cpp b/fxjs/cfxjse_resolveprocessor.cpp index ef0fcbf174..5dba39b25d 100644 --- a/fxjs/cfxjse_resolveprocessor.cpp +++ b/fxjs/cfxjse_resolveprocessor.cpp @@ -584,6 +584,7 @@ int32_t CFXJSE_ResolveProcessor::GetFilter(const WideStringView& wsExpression, static_cast(FX_HashCode_GetW(wsName.AsStringView(), false)); return nStart; } + void CFXJSE_ResolveProcessor::ConditionArray(int32_t iCurIndex, WideString wsCondition, int32_t iFoundCount, @@ -594,18 +595,14 @@ void CFXJSE_ResolveProcessor::ConditionArray(int32_t iCurIndex, int32_t i = 1; for (; i < iLen; ++i) { wchar_t ch = wsCondition[i]; - if (ch == ' ') { + if (ch == ' ') continue; - } if (ch == '+' || ch == '-') { bRelative = true; - break; } else if (ch == '*') { bAll = true; - break; - } else { - break; } + break; } if (bAll) { if (rnd.m_dwStyles & XFA_RESOLVENODE_CreateNode) { -- cgit v1.2.3