summaryrefslogtreecommitdiff
path: root/lib/events.js
diff options
context:
space:
mode:
authorMichaƫl Zasso <mic.besace@gmail.com>2016-01-15 09:53:11 +0100
committerRoman Reiss <me@silverwind.io>2016-01-16 19:54:25 +0100
commit0ec093cd410b8797b02055a445d650f72fd16796 (patch)
tree4e6977b706731d2365dd89b39f0b36e73a046da7 /lib/events.js
parent162e16afdbb99036bb232619c66a95cea50614a2 (diff)
downloadandroid-node-v8-0ec093cd410b8797b02055a445d650f72fd16796.tar.gz
android-node-v8-0ec093cd410b8797b02055a445d650f72fd16796.tar.bz2
android-node-v8-0ec093cd410b8797b02055a445d650f72fd16796.zip
lib,test: remove extra semicolons
PR-URL: https://github.com/nodejs/node/pull/2205 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'lib/events.js')
-rw-r--r--lib/events.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events.js b/lib/events.js
index f57882ab6d..5860254654 100644
--- a/lib/events.js
+++ b/lib/events.js
@@ -434,7 +434,7 @@ function listenerCount(type) {
}
return 0;
-};
+}
// About 1.5x faster than the two-arg version of Array#splice().
function spliceOne(list, index) {