aboutsummaryrefslogtreecommitdiff
path: root/node_simple.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_simple.js')
-rw-r--r--node_simple.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/node_simple.js b/node_simple.js
index c3431ed..65a233c 100644
--- a/node_simple.js
+++ b/node_simple.js
@@ -832,8 +832,6 @@ exports.remove_exam = function (fields, serverCallback) {
});
};
-
-
// callback(success, error, data)
exports.get_exam_byID = function (id, callback) {
@@ -851,9 +849,8 @@ exports.get_exam_byID = function (id, callback) {
callback(false, false, null);
}
else {
- // console.log(JSON.stringify(docs, null, 2));
- //console.log(docs);
callback(true, false, docs[0]);
+
}
});
})