Skip to content

Commit

Permalink
Remove useless debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Jan 18, 2015
1 parent 26a495d commit b9b540d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions code/Currency.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ public static function getAllCurrencies($alsoUnused = false, $alsoNotTender = fa
{
$result = array();
foreach (Data::get('currencies', $locale) as $code => $info) {
if (!isset($info['name'])) {
echo "\nlocale=\n";
var_export($locale);
echo "\ncode=\n";
var_export($code);
echo "\ninfo=\n";
var_export($info);
die();
}
$result[$code] = $info['name'];
}
if ((!$alsoUnused) || (!$alsoNotTender)) {
Expand Down

0 comments on commit b9b540d

Please sign in to comment.