From 33a747db5c9ce18bdfaaaaea17b03ef26d14ff54 Mon Sep 17 00:00:00 2001 From: tsepez Date: Thu, 28 Apr 2016 15:16:51 -0700 Subject: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, Part 5 Remove unused m_pdf417byteSegments, which was coped into from an empty array and never again referenced. Review-Url: https://codereview.chromium.org/1927253002 --- xfa/fxbarcode/common/BC_CommonDecoderResult.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'xfa/fxbarcode/common/BC_CommonDecoderResult.cpp') diff --git a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp index d28a88bfbc..45aff1cae1 100644 --- a/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp +++ b/xfa/fxbarcode/common/BC_CommonDecoderResult.cpp @@ -44,7 +44,6 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, } void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, const CFX_ByteString& text, - const CFX_PtrArray& byteSegments, const CFX_ByteString& ecLevel, int32_t& e) { if (text.IsEmpty()) { @@ -53,7 +52,6 @@ void CBC_CommonDecoderResult::Init(const CFX_ByteArray& rawBytes, } m_rawBytes.Copy(rawBytes); m_text = text; - m_pdf417byteSegments.Copy(byteSegments); m_pdf417ecLevel = ecLevel; m_other = NULL; } -- cgit v1.2.3