From d129184f7b8d468c0ac07d6073398a65be06d1c3 Mon Sep 17 00:00:00 2001 From: Kevin Jahns Date: Mon, 31 Jul 2017 15:43:04 +0200 Subject: [PATCH] fix linting --- src/Struct.js | 5 ----- src/Utils.js | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Struct.js b/src/Struct.js index 6b2bbdb2..ea03c042 100644 --- a/src/Struct.js +++ b/src/Struct.js @@ -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 } diff --git a/src/Utils.js b/src/Utils.js index 736d1272..a2ab394a 100644 --- a/src/Utils.js +++ b/src/Utils.js @@ -1,3 +1,4 @@ +/* globals crypto */ import { BinaryDecoder, BinaryEncoder } from './Encoding.js'