Mass replacement of #-comments with //-comments

like leprous boils in our code. So, I've replaced all of them with //
comments instead. It's a massive, meaningless, and potentially buggy
change -- great one for the middle of a release cycle, eh?
This commit is contained in:
Evan Prodromou
2011-03-22 11:54:23 -04:00
parent 61960d3668
commit 83fb5e6023
43 changed files with 126 additions and 126 deletions

View File

@@ -45,7 +45,7 @@ class EnjitQueueHandler extends QueueHandler
}
#
# Build an Atom message from the notice
// Build an Atom message from the notice
#
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
$msg = $profile->nickname . ': ' . $notice->content;
@@ -73,7 +73,7 @@ class EnjitQueueHandler extends QueueHandler
);
#
# POST the message to $config['enjit']['apiurl']
// POST the message to $config['enjit']['apiurl']
#
$request = HTTPClient::start();
$response = $request->post($url, null, $data);