X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FImport%2FParser.php;h=738254e5c1898605fbecd18511c7b351e7923840;hb=ca2057ea8c50d7ef19be5bfe95b31189593409e4;hp=c4169c2c5d37dcaefbe24996c5c3dda1ed0535b8;hpb=6995213a9a66c0eca2fd0955d03ea2e99f00f355;p=civicrm-core.git diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index c4169c2c5d..738254e5c1 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -34,7 +34,7 @@ abstract class CRM_Import_Parser { /** * Settings */ - const MAX_ERRORS = 250, MAX_WARNINGS = 25, DEFAULT_TIMEOUT = 30; + const MAX_WARNINGS = 25, DEFAULT_TIMEOUT = 30; /** * Return codes @@ -79,11 +79,6 @@ abstract class CRM_Import_Parser { */ protected $_maxLinesToProcess; - /** - * Maximum number of invalid rows to store - */ - protected $_maxErrorCount; - /** * Array of error lines, bounded by MAX_ERROR */ @@ -192,7 +187,6 @@ abstract class CRM_Import_Parser { */ public function __construct() { $this->_maxLinesToProcess = 0; - $this->_maxErrorCount = self::MAX_ERRORS; } /**