diff --git a/core/rfb.js b/core/rfb.js index 8f9a5469..d1921a10 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -18,7 +18,6 @@ import Display from "./display.js"; import Keyboard from "./input/keyboard.js"; import Mouse from "./input/mouse.js"; import Websock from "./websock.js"; -import Base64 from "./base64.js"; import DES from "./des.js"; import KeyTable from "./input/keysym.js"; import XtScancode from "./input/xtscancodes.js"; diff --git a/core/util/events.js b/core/util/events.js index c1afb48a..8efd0c23 100644 --- a/core/util/events.js +++ b/core/util/events.js @@ -10,8 +10,6 @@ * Cross-browser event and position routines */ -import * as Log from './logging.js'; - export function getPointerEvent (e) { return e.changedTouches ? e.changedTouches[0] : e.touches ? e.touches[0] : e; };