Remove useless console.log

This commit is contained in:
Philipp Tusch 2016-09-08 13:23:21 +02:00 committed by Patrick Mooney
parent 2a9ce5515d
commit 0e91a06137
2 changed files with 0 additions and 2 deletions

View File

@ -77,7 +77,6 @@ Object.defineProperties(Change.prototype, {
}
var k = keys[0];
console.log(keys);
var _attr = new Attribute({type: k});
if (Array.isArray(val[k])) {
val[k].forEach(function (v) {

View File

@ -21,7 +21,6 @@ function Control(options) {
assert.optionalString(options.type);
assert.optionalBool(options.criticality);
if (options.value) {
console.log(assert.buffer.toString());
assert.buffer(options.value);
}