[Persistence] Satisfy JSHint

This commit is contained in:
Victor Woeltjen 2016-05-19 12:17:20 -07:00
parent 8279acc9a5
commit f1e81c359e
3 changed files with 0 additions and 6 deletions

View File

@ -22,8 +22,6 @@
/*global define*/
define([], function () {
'use strict';
/**
* Listens for mutation on domain objects and triggers mutation when
* it occurs.

View File

@ -45,9 +45,6 @@ define(
[ 'getCapability', 'useCapability' ]
);
mockDomainObject.getCapability.andCallFake(function (c) {
return (c === 'persistence') && mockPersistence;
});
mockDomainObject.useCapability.andCallFake(function (c, v) {
if (c === 'mutation') {
testModel = v(testModel) || testModel;

View File

@ -27,7 +27,6 @@ define(
describe("A timer's start action", function () {
var mockNow,
mockDomainObject,
mockPersistence,
testModel,
testContext,
action;