diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-13 15:24:19 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-13 15:24:19 -0700 |
commit | 388a3b0b8d6f75d47978c08299300f121f04884c (patch) | |
tree | fadc1a463409d762d66f3f82ea75af497b9c3268 /fpdfsdk/src/javascript | |
parent | 5312f9a6ed88e653f4cfb604d892ca18da75e721 (diff) | |
download | pdfium-388a3b0b8d6f75d47978c08299300f121f04884c.tar.xz |
Remove if checks after new.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1287863002 .
Diffstat (limited to 'fpdfsdk/src/javascript')
-rw-r--r-- | fpdfsdk/src/javascript/app.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/fpdfsdk/src/javascript/app.cpp b/fpdfsdk/src/javascript/app.cpp index 24f00ca262..1b84508fd6 100644 --- a/fpdfsdk/src/javascript/app.cpp +++ b/fpdfsdk/src/javascript/app.cpp @@ -298,19 +298,12 @@ FX_BOOL app::alert(IFXJS_Context* cc, if (swMsg == L"") { CJS_Array carray(isolate); if (params[0].ConvertToArray(carray)) { - int iLenth = carray.GetLength(); + int iLength = carray.GetLength(); CJS_Value* pValue = new CJS_Value(isolate); - // if (iLenth == 1) - // pValue = new - // CJS_Value(isolate); - // else if (iLenth > 1) - // pValue = new - // CJS_Value[iLenth]; - - for (int i = 0; i < iLenth; i++) { + for (int i = 0; i < iLength; ++i) { carray.GetElement(i, *pValue); swMsg += (*pValue).ToCFXWideString(); - if (i < iLenth - 1) + if (i < iLength - 1) swMsg += L", "; } |