Browse Source

Commented code should not be commited #inslight

1.0
Andrés Montañez 10 years ago
parent
commit
b174d04da2
  1. 4
      Mage/Spyc.php
  2. 1
      Mage/Task/BuiltIn/Ioncube/EncryptTask.php

4
Mage/Spyc.php

@ -744,9 +744,6 @@ class Spyc {
}
private function addArray ($incoming_data, $incoming_indent) {
// print_r ($incoming_data);
if (count ($incoming_data) > 1)
return $this->addArrayInline ($incoming_data, $incoming_indent);
@ -1019,7 +1016,6 @@ class Spyc {
private function addGroup ($line, $group) {
if ($group[0] == '&') $this->_containsGroupAnchor = substr ($group, 1);
if ($group[0] == '*') $this->_containsGroupAlias = substr ($group, 1);
//print_r ($this->path);
}
private function stripGroup ($line, $group) {

1
Mage/Task/BuiltIn/Ioncube/EncryptTask.php

@ -592,7 +592,6 @@ class EncryptTask extends AbstractTask
* @return bool
*/
private function switchSrcToTmp() {
//echo "\nSwitching :" . $this->source . " -> To :" . $this->ionSource."\n";
$ret = Console::executeCommand ( 'mv ' . $this->source . ' ' . $this->ionSource, $out );
if (! $ret) {
throw new ErrorWithMessageException ( 'Cant create tmp dir :' . $out, $ret );

Loading…
Cancel
Save