fix linting

This commit is contained in:
Kevin Jahns 2017-07-31 15:43:04 +02:00
parent a05bb1d4f9
commit d129184f7b
2 changed files with 1 additions and 5 deletions

View File

@ -413,11 +413,6 @@ export default function extendStruct (Y) {
id: op.id,
type: op.type
}
if (op.requires != null) {
debugger // TODO: this is used. adapt binarEncode/Decode!!
console.warn('Note to myself: this is used. adapt binarEncode/Decode!!')
e.requires = op.requires
}
if (op.info != null) {
e.info = op.info
}

View File

@ -1,3 +1,4 @@
/* globals crypto */
import { BinaryDecoder, BinaryEncoder } from './Encoding.js'