From 05e67415684adc36af228ca2f1e0efc30a40d242 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Mon, 25 Jan 2016 16:35:42 -0800 Subject: XFA: Fix a bunch of pointless returns. And a few other nits. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1635853002 . --- fpdfsdk/src/fsdk_baseannot.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'fpdfsdk/src/fsdk_baseannot.cpp') diff --git a/fpdfsdk/src/fsdk_baseannot.cpp b/fpdfsdk/src/fsdk_baseannot.cpp index 30e702241e..0d65e06b38 100644 --- a/fpdfsdk/src/fsdk_baseannot.cpp +++ b/fpdfsdk/src/fsdk_baseannot.cpp @@ -978,15 +978,11 @@ UnderlyingPageType* CPDFSDK_Annot::GetUnderlyingPage() { } CPDF_Page* CPDFSDK_Annot::GetPDFPage() { - if (m_pPageView) - return m_pPageView->GetPDFPage(); - return NULL; + return m_pPageView ? m_pPageView->GetPDFPage() : nullptr; } #ifdef PDF_ENABLE_XFA CPDFXFA_Page* CPDFSDK_Annot::GetPDFXFAPage() { - if (m_pPageView) - return m_pPageView->GetPDFXFAPage(); - return NULL; + return m_pPageView ? m_pPageView->GetPDFXFAPage() : nullptr; } #endif // PDF_ENABLE_XFA -- cgit v1.2.3