Remove semicolons

This commit is contained in:
John Hiesey 2014-06-04 23:35:20 -07:00
parent 48baf2bfa6
commit effd911f21

View File

@ -265,7 +265,7 @@ Tracker.prototype._requestUdp = function (requestUrl, opts) {
function send (message) {
if (!parsedUrl.port) {
parsedUrl.port = 80;
parsedUrl.port = 80
}
socket.send(message, 0, message.length, parsedUrl.port, parsedUrl.hostname)
}
@ -335,7 +335,7 @@ Tracker.prototype._handleResponse = function (requestUrl, data) {
var warning = data['warning message']
if (warning) {
self.client.emit('warning', warning);
self.client.emit('warning', warning)
}
if (requestUrl === self._announceUrl) {