We already throw exceptions for PEAR errors

This commit is contained in:
Mikael Nordfeldth 2015-04-20 00:26:00 +02:00
parent b75e88f65f
commit 8a119dc970
1 changed files with 0 additions and 4 deletions

View File

@ -98,7 +98,6 @@ class SchemaUpdater
{ {
$checksums = array(); $checksums = array();
PEAR::pushErrorHandling(PEAR_ERROR_EXCEPTION);
try { try {
$sv = new Schema_version(); $sv = new Schema_version();
$sv->find(); $sv->find();
@ -111,7 +110,6 @@ class SchemaUpdater
// no dice! // no dice!
common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet."); common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet.");
} }
PEAR::popErrorHandling();
return $checksums; return $checksums;
} }
@ -124,7 +122,6 @@ class SchemaUpdater
*/ */
protected function saveChecksum($table, $checksum) protected function saveChecksum($table, $checksum)
{ {
PEAR::pushErrorHandling(PEAR_ERROR_EXCEPTION);
try { try {
$sv = new Schema_version(); $sv = new Schema_version();
$sv->table_name = $table; $sv->table_name = $table;
@ -139,7 +136,6 @@ class SchemaUpdater
// no dice! // no dice!
common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet."); common_log(LOG_DEBUG, "Possibly schema_version table doesn't exist yet.");
} }
PEAR::popErrorHandling();
$this->checksums[$table] = $checksum; $this->checksums[$table] = $checksum;
} }
} }