Update src/node/db/API.js

Added a missing symicolon and removed the padID argument which is not passed(and thus leads to an errors because the callback lands in there).
pull/1272/head
Stephan Jauernick 2012-12-06 21:24:44 +01:00 committed by Stephan Jauernick
parent 2163c8be5c
commit 26ece95905
1 changed files with 2 additions and 2 deletions

View File

@ -555,9 +555,9 @@ Example returns:
{code: 0, message:"ok"}
*/
exports.checkToken = function(padID, callback)
exports.checkToken = function(callback)
{
callback()
callback();
}