From 53f2f156cadf5e2dbfdab281f4765dd6294be104 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 29 Jun 2015 16:09:07 +0100 Subject: [PATCH] Fix linting errors --- lib/models/event.js | 3 ++- lib/pushprocessor.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/models/event.js b/lib/models/event.js index bddd015f3..7a46adaa0 100644 --- a/lib/models/event.js +++ b/lib/models/event.js @@ -1,6 +1,7 @@ +"use strict"; + var PushProcessor = require('../pushprocessor'); -"use strict"; /** * This is an internal module. See {@link MatrixEvent} and {@link RoomEvent} for * the public classes. diff --git a/lib/pushprocessor.js b/lib/pushprocessor.js index 1abfc9e16..8ee34c449 100644 --- a/lib/pushprocessor.js +++ b/lib/pushprocessor.js @@ -212,5 +212,5 @@ module.exports = function(client) { this.actionsForEvent = function(ev) { return pushActionsForEventAndRulesets(ev, client.pushRules); }; -} +};