remove debug

This commit is contained in:
Isaac Connor 2019-01-15 11:38:43 -05:00
parent 07c7c271a6
commit ac27005944
1 changed files with 0 additions and 1 deletions

View File

@ -127,7 +127,6 @@ echo "\nvar Servers = [];\n";
$Server = new Server(); $Server = new Server();
echo 'Servers[0] = new Server(' . json_encode($Server). ");\n"; echo 'Servers[0] = new Server(' . json_encode($Server). ");\n";
foreach ( Server::find() as $Server ) { foreach ( Server::find() as $Server ) {
echo '//'.$Server->PathToIndex()."\n"; // Otherwise get null when json_encoding
echo 'Servers[' . $Server->Id() . '] = new Server(' . $Server->to_json(). ");\n"; echo 'Servers[' . $Server->Id() . '] = new Server(' . $Server->to_json(). ");\n";
} }