diff --git a/platform/commonUI/edit/src/policies/EditableLinkPolicy.js b/platform/commonUI/edit/src/policies/EditableLinkPolicy.js
index ad3043df2d..c311266cf8 100644
--- a/platform/commonUI/edit/src/policies/EditableLinkPolicy.js
+++ b/platform/commonUI/edit/src/policies/EditableLinkPolicy.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- "use strict";
/**
* Policy suppressing links when the linked-to domain object is in
diff --git a/platform/commonUI/general/src/ui/TreeLabelView.js b/platform/commonUI/general/src/ui/TreeLabelView.js
index 75e8efcc29..d5dffb0068 100644
--- a/platform/commonUI/general/src/ui/TreeLabelView.js
+++ b/platform/commonUI/general/src/ui/TreeLabelView.js
@@ -19,13 +19,11 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([
'zepto',
'text!../../res/templates/tree/tree-label.html'
], function ($, labelTemplate) {
- 'use strict';
function TreeLabelView(gestureService) {
this.el = $(labelTemplate);
diff --git a/platform/commonUI/general/src/ui/TreeNodeView.js b/platform/commonUI/general/src/ui/TreeNodeView.js
index 14ff0f3233..2cff198e76 100644
--- a/platform/commonUI/general/src/ui/TreeNodeView.js
+++ b/platform/commonUI/general/src/ui/TreeNodeView.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([
'zepto',
@@ -27,7 +26,6 @@ define([
'./ToggleView',
'./TreeLabelView'
], function ($, nodeTemplate, ToggleView, TreeLabelView) {
- 'use strict';
function TreeNodeView(gestureService, subtreeFactory, selectFn) {
this.li = $('
');
diff --git a/platform/commonUI/general/src/ui/TreeView.js b/platform/commonUI/general/src/ui/TreeView.js
index b1b394ae4c..da0bed7091 100644
--- a/platform/commonUI/general/src/ui/TreeView.js
+++ b/platform/commonUI/general/src/ui/TreeView.js
@@ -19,14 +19,12 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([
'zepto',
'./TreeNodeView',
'text!../../res/templates/tree/wait-node.html'
], function ($, TreeNodeView, spinnerTemplate) {
- 'use strict';
function TreeView(gestureService, selectFn) {
this.ul = $('');
diff --git a/platform/commonUI/general/test/directives/MCTTreeSpec.js b/platform/commonUI/general/test/directives/MCTTreeSpec.js
index 597c4c55b7..80854685e6 100644
--- a/platform/commonUI/general/test/directives/MCTTreeSpec.js
+++ b/platform/commonUI/general/test/directives/MCTTreeSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,beforeEach,jasmine,it,expect*/
define([
'../../src/directives/MCTTree'
diff --git a/platform/commonUI/general/test/ui/TreeViewSpec.js b/platform/commonUI/general/test/ui/TreeViewSpec.js
index eae4d3eafd..7d28ae32a6 100644
--- a/platform/commonUI/general/test/ui/TreeViewSpec.js
+++ b/platform/commonUI/general/test/ui/TreeViewSpec.js
@@ -19,13 +19,11 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,beforeEach,jasmine,it,expect*/
define([
'../../src/ui/TreeView',
'zepto'
], function (TreeView, $) {
- 'use strict';
describe("TreeView", function () {
var mockGestureService,
diff --git a/platform/core/src/models/ModelCacheService.js b/platform/core/src/models/ModelCacheService.js
index 4bcee0b93d..0e6a196dbc 100644
--- a/platform/core/src/models/ModelCacheService.js
+++ b/platform/core/src/models/ModelCacheService.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- 'use strict';
/**
* Provides a cache for domain object models which exist in memory,
diff --git a/platform/core/test/models/ModelCacheServiceSpec.js b/platform/core/test/models/ModelCacheServiceSpec.js
index f8254779ab..23d1a0ce0d 100644
--- a/platform/core/test/models/ModelCacheServiceSpec.js
+++ b/platform/core/test/models/ModelCacheServiceSpec.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(['../../src/models/ModelCacheService'], function (ModelCacheService) {
- 'use strict';
describe("ModelCacheService", function () {
var testIds,
testModels,
diff --git a/platform/entanglement/src/policies/CopyPolicy.js b/platform/entanglement/src/policies/CopyPolicy.js
index 09fe424540..dae3066111 100644
--- a/platform/entanglement/src/policies/CopyPolicy.js
+++ b/platform/entanglement/src/policies/CopyPolicy.js
@@ -20,9 +20,7 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define */
define([], function () {
- 'use strict';
/**
* Disallow duplication when the object to be duplicated is not
diff --git a/platform/entanglement/src/policies/MovePolicy.js b/platform/entanglement/src/policies/MovePolicy.js
index 064b6b7192..0c395f9302 100644
--- a/platform/entanglement/src/policies/MovePolicy.js
+++ b/platform/entanglement/src/policies/MovePolicy.js
@@ -20,9 +20,7 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define */
define([], function () {
- 'use strict';
/**
* Disallow moves when either the parent or the child are not
diff --git a/platform/entanglement/test/ControlledPromise.js b/platform/entanglement/test/ControlledPromise.js
index 0b3fcd6cf6..2f1c99ed84 100644
--- a/platform/entanglement/test/ControlledPromise.js
+++ b/platform/entanglement/test/ControlledPromise.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global spyOn*/
define(
function () {
diff --git a/platform/entanglement/test/DomainObjectFactory.js b/platform/entanglement/test/DomainObjectFactory.js
index 4a11667084..e9ef03c021 100644
--- a/platform/entanglement/test/DomainObjectFactory.js
+++ b/platform/entanglement/test/DomainObjectFactory.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global jasmine*/
define(
function () {
diff --git a/platform/entanglement/test/policies/CopyPolicySpec.js b/platform/entanglement/test/policies/CopyPolicySpec.js
index b53f4d22ed..88eeaec8d8 100644
--- a/platform/entanglement/test/policies/CopyPolicySpec.js
+++ b/platform/entanglement/test/policies/CopyPolicySpec.js
@@ -20,12 +20,10 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,beforeEach,it,jasmine,expect,spyOn */
define([
'../../src/policies/CopyPolicy',
'../DomainObjectFactory'
], function (CopyPolicy, domainObjectFactory) {
- 'use strict';
describe("CopyPolicy", function () {
var testMetadata,
diff --git a/platform/entanglement/test/policies/MovePolicySpec.js b/platform/entanglement/test/policies/MovePolicySpec.js
index d55ad3c697..ab19731a60 100644
--- a/platform/entanglement/test/policies/MovePolicySpec.js
+++ b/platform/entanglement/test/policies/MovePolicySpec.js
@@ -20,12 +20,10 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,beforeEach,it,jasmine,expect,spyOn */
define([
'../../src/policies/MovePolicy',
'../DomainObjectFactory'
], function (MovePolicy, domainObjectFactory) {
- 'use strict';
describe("MovePolicy", function () {
var testMetadata,
diff --git a/platform/entanglement/test/services/MockCopyService.js b/platform/entanglement/test/services/MockCopyService.js
index cf986bec7e..2ba49b53b9 100644
--- a/platform/entanglement/test/services/MockCopyService.js
+++ b/platform/entanglement/test/services/MockCopyService.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global jasmine*/
define(
function () {
diff --git a/platform/entanglement/test/services/MockLinkService.js b/platform/entanglement/test/services/MockLinkService.js
index 5345efc86e..5c583783c8 100644
--- a/platform/entanglement/test/services/MockLinkService.js
+++ b/platform/entanglement/test/services/MockLinkService.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global jasmine*/
define(
[
'../ControlledPromise'
diff --git a/platform/entanglement/test/services/MockMoveService.js b/platform/entanglement/test/services/MockMoveService.js
index d5a290c03f..1eccad53c0 100644
--- a/platform/entanglement/test/services/MockMoveService.js
+++ b/platform/entanglement/test/services/MockMoveService.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global jasmine*/
define(
function () {
diff --git a/platform/features/conductor/test/TestTimeConductor.js b/platform/features/conductor/test/TestTimeConductor.js
index 52ffb773d4..2a0fe7a7a8 100644
--- a/platform/features/conductor/test/TestTimeConductor.js
+++ b/platform/features/conductor/test/TestTimeConductor.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global spyOn*/
define(
["../src/TimeConductor"],
function (TimeConductor) {
diff --git a/platform/features/table/src/controllers/RTTelemetryTableController.js b/platform/features/table/src/controllers/RTTelemetryTableController.js
index 8a61d61b5e..6ae7f3b578 100644
--- a/platform/features/table/src/controllers/RTTelemetryTableController.js
+++ b/platform/features/table/src/controllers/RTTelemetryTableController.js
@@ -19,14 +19,12 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define(
[
'./TelemetryTableController'
],
function (TableController) {
- "use strict";
/**
* Extends TelemetryTableController and adds real-time streaming
diff --git a/platform/features/table/test/controllers/RTTelemetryTableControllerSpec.js b/platform/features/table/test/controllers/RTTelemetryTableControllerSpec.js
index 59911d1771..cf6421c9a5 100644
--- a/platform/features/table/test/controllers/RTTelemetryTableControllerSpec.js
+++ b/platform/features/table/test/controllers/RTTelemetryTableControllerSpec.js
@@ -19,14 +19,12 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,xit*/
define(
[
"../../src/controllers/RTTelemetryTableController"
],
function (TableController) {
- "use strict";
describe('The real-time table controller', function () {
var mockScope,
diff --git a/platform/features/timeline/src/actions/CompositionColumn.js b/platform/features/timeline/src/actions/CompositionColumn.js
index b7208c3e92..f9bede9983 100644
--- a/platform/features/timeline/src/actions/CompositionColumn.js
+++ b/platform/features/timeline/src/actions/CompositionColumn.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- "use strict";
/**
* A column containing references to other objects contained
diff --git a/platform/features/timeline/src/actions/ExportTimelineAsCSVAction.js b/platform/features/timeline/src/actions/ExportTimelineAsCSVAction.js
index 387c0839a0..7b7754e720 100644
--- a/platform/features/timeline/src/actions/ExportTimelineAsCSVAction.js
+++ b/platform/features/timeline/src/actions/ExportTimelineAsCSVAction.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define(["./ExportTimelineAsCSVTask"], function (ExportTimelineAsCSVTask) {
- 'use strict';
/**
* Implements the "Export Timeline as CSV" action.
diff --git a/platform/features/timeline/src/actions/ExportTimelineAsCSVTask.js b/platform/features/timeline/src/actions/ExportTimelineAsCSVTask.js
index 253db5c8b9..b8d796b3c4 100644
--- a/platform/features/timeline/src/actions/ExportTimelineAsCSVTask.js
+++ b/platform/features/timeline/src/actions/ExportTimelineAsCSVTask.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,Promise*/
/**
* Module defining ExportTimelineAsCSVTask. Created by vwoeltje on 2/8/16.
@@ -28,7 +27,6 @@ define([
"./TimelineTraverser",
"./TimelineColumnizer"
], function (TimelineTraverser, TimelineColumnizer) {
- "use strict";
/**
* Runs (and coordinates) the preparation and export of CSV data
diff --git a/platform/features/timeline/src/actions/IdColumn.js b/platform/features/timeline/src/actions/IdColumn.js
index 56ddfe385f..38c8b9264e 100644
--- a/platform/features/timeline/src/actions/IdColumn.js
+++ b/platform/features/timeline/src/actions/IdColumn.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- "use strict";
/**
* A column showing domain object identifiers.
diff --git a/platform/features/timeline/src/actions/MetadataColumn.js b/platform/features/timeline/src/actions/MetadataColumn.js
index c94237a917..7676552879 100644
--- a/platform/features/timeline/src/actions/MetadataColumn.js
+++ b/platform/features/timeline/src/actions/MetadataColumn.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- "use strict";
/**
* A column reflecting properties from domain object metadata.
diff --git a/platform/features/timeline/src/actions/ModeColumn.js b/platform/features/timeline/src/actions/ModeColumn.js
index 4ae61b30d3..fe2063566d 100644
--- a/platform/features/timeline/src/actions/ModeColumn.js
+++ b/platform/features/timeline/src/actions/ModeColumn.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define([], function () {
- "use strict";
/**
* A column showing relationships to activity modes.
diff --git a/platform/features/timeline/src/actions/TimelineColumnizer.js b/platform/features/timeline/src/actions/TimelineColumnizer.js
index 3069bd8b96..f24fa20eee 100644
--- a/platform/features/timeline/src/actions/TimelineColumnizer.js
+++ b/platform/features/timeline/src/actions/TimelineColumnizer.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,Promise*/
define([
"./IdColumn",
@@ -34,7 +33,6 @@ define([
MetadataColumn,
TimespanColumn
) {
- 'use strict';
/**
* A description of how to populate a given column within a
diff --git a/platform/features/timeline/src/actions/TimelineTraverser.js b/platform/features/timeline/src/actions/TimelineTraverser.js
index f6857658fb..f38d0e3489 100644
--- a/platform/features/timeline/src/actions/TimelineTraverser.js
+++ b/platform/features/timeline/src/actions/TimelineTraverser.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,Promise*/
define([], function () {
- "use strict";
/**
* Builds a list of domain objects which should be included
diff --git a/platform/features/timeline/src/actions/TimespanColumn.js b/platform/features/timeline/src/actions/TimespanColumn.js
index 6d0c4e05a9..a701724ee1 100644
--- a/platform/features/timeline/src/actions/TimespanColumn.js
+++ b/platform/features/timeline/src/actions/TimespanColumn.js
@@ -19,10 +19,8 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define*/
define(['../TimelineFormatter'], function (TimelineFormatter) {
- "use strict";
var FORMATTER = new TimelineFormatter();
diff --git a/platform/features/timeline/test/actions/CompositionColumnSpec.js b/platform/features/timeline/test/actions/CompositionColumnSpec.js
index 99e23d5597..87377a856f 100644
--- a/platform/features/timeline/test/actions/CompositionColumnSpec.js
+++ b/platform/features/timeline/test/actions/CompositionColumnSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/CompositionColumn'],
diff --git a/platform/features/timeline/test/actions/ExportTimelineAsCSVActionSpec.js b/platform/features/timeline/test/actions/ExportTimelineAsCSVActionSpec.js
index 3d5cd8b01c..7250fd2621 100644
--- a/platform/features/timeline/test/actions/ExportTimelineAsCSVActionSpec.js
+++ b/platform/features/timeline/test/actions/ExportTimelineAsCSVActionSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/ExportTimelineAsCSVAction'],
diff --git a/platform/features/timeline/test/actions/ExportTimelineAsCSVTaskSpec.js b/platform/features/timeline/test/actions/ExportTimelineAsCSVTaskSpec.js
index 7979104ee5..d9c6ca3c6e 100644
--- a/platform/features/timeline/test/actions/ExportTimelineAsCSVTaskSpec.js
+++ b/platform/features/timeline/test/actions/ExportTimelineAsCSVTaskSpec.js
@@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/ExportTimelineAsCSVTask'],
function (ExportTimelineAsCSVTask) {
- 'use strict';
// Note that most responsibility is delegated to helper
// classes, so testing here is minimal.
diff --git a/platform/features/timeline/test/actions/IdColumnSpec.js b/platform/features/timeline/test/actions/IdColumnSpec.js
index a12b6145a9..5aab82d11f 100644
--- a/platform/features/timeline/test/actions/IdColumnSpec.js
+++ b/platform/features/timeline/test/actions/IdColumnSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/IdColumn'],
diff --git a/platform/features/timeline/test/actions/MetadataColumnSpec.js b/platform/features/timeline/test/actions/MetadataColumnSpec.js
index ba38fc83c0..f9ff3f3d35 100644
--- a/platform/features/timeline/test/actions/MetadataColumnSpec.js
+++ b/platform/features/timeline/test/actions/MetadataColumnSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/MetadataColumn'],
diff --git a/platform/features/timeline/test/actions/ModeColumnSpec.js b/platform/features/timeline/test/actions/ModeColumnSpec.js
index ab15d696c2..1189b30ca6 100644
--- a/platform/features/timeline/test/actions/ModeColumnSpec.js
+++ b/platform/features/timeline/test/actions/ModeColumnSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/ModeColumn'],
diff --git a/platform/features/timeline/test/actions/TimelineColumnizerSpec.js b/platform/features/timeline/test/actions/TimelineColumnizerSpec.js
index 9eacf4f3b3..d47d493ca9 100644
--- a/platform/features/timeline/test/actions/TimelineColumnizerSpec.js
+++ b/platform/features/timeline/test/actions/TimelineColumnizerSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/TimelineColumnizer'],
diff --git a/platform/features/timeline/test/actions/TimelineTraverserSpec.js b/platform/features/timeline/test/actions/TimelineTraverserSpec.js
index 6962373ff9..3cec488b0d 100644
--- a/platform/features/timeline/test/actions/TimelineTraverserSpec.js
+++ b/platform/features/timeline/test/actions/TimelineTraverserSpec.js
@@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define([
"../../src/actions/TimelineTraverser"
], function (TimelineTraverser) {
- 'use strict';
describe("TimelineTraverser", function () {
var testModels,
diff --git a/platform/features/timeline/test/actions/TimespanColumnSpec.js b/platform/features/timeline/test/actions/TimespanColumnSpec.js
index f4970b778e..5eea2a9281 100644
--- a/platform/features/timeline/test/actions/TimespanColumnSpec.js
+++ b/platform/features/timeline/test/actions/TimespanColumnSpec.js
@@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
define(
['../../src/actions/TimespanColumn', '../../src/TimelineFormatter'],
diff --git a/platform/framework/src/FrameworkLayer.js b/platform/framework/src/FrameworkLayer.js
index 1f8910fe15..765013adf8 100644
--- a/platform/framework/src/FrameworkLayer.js
+++ b/platform/framework/src/FrameworkLayer.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global window,requirejs*/
define([
'require',
diff --git a/platform/framework/src/Main.js b/platform/framework/src/Main.js
index c468e4dbea..e1feb8b861 100644
--- a/platform/framework/src/Main.js
+++ b/platform/framework/src/Main.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global window,requirejs*/
/**
* Implements the framework layer, which handles the loading of bundles
diff --git a/platform/search/src/services/GenericSearchWorker.js b/platform/search/src/services/GenericSearchWorker.js
index a3cd34c2e2..4575ed1b55 100644
--- a/platform/search/src/services/GenericSearchWorker.js
+++ b/platform/search/src/services/GenericSearchWorker.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global self*/
/**
* Module defining GenericSearchWorker. Created by shale on 07/21/2015.
diff --git a/platform/search/test/services/GenericSearchWorkerSpec.js b/platform/search/test/services/GenericSearchWorkerSpec.js
index 952d2a4d58..22f0d35ac9 100644
--- a/platform/search/test/services/GenericSearchWorkerSpec.js
+++ b/platform/search/test/services/GenericSearchWorkerSpec.js
@@ -20,7 +20,6 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/
-/*global require*/
/**
* SearchSpec. Created by shale on 07/31/2015.