Переглянути джерело

EAGLESIX-2653: Fix some jshint errors

Chris Sexton 11 роки тому
батько
коміт
d72e900b26

+ 1 - 3
lib/pipeline/matcher/MatchDetails.js

@@ -87,7 +87,6 @@ proto.requestElemMatchKey = function requestElemMatchKey(){
  *
  */
 proto.hasElemMatchKey = function hasElemMatchKey(){
-	debugger
 	return (typeof this._elemMatchKey !== 'undefined');
 };
 
@@ -110,8 +109,7 @@ proto.elemMatchKey = function elemMatchKey(){
  *
  */
 proto.setElemMatchKey = function setElemMatchKey(elemMatchKey){
-	debugger
 	if ( this._elemMatchKeyRequested ) {
 		this._elemMatchKey = elemMatchKey;
 	}
-};
+};

+ 1 - 1
test/lib/pipeline/matcher/MatchDetails.js

@@ -57,6 +57,6 @@ module.exports = {
 			assert.equal(md.elemMatchKey(), key);
 		}
 	}
-}
+};
 
 if (!module.parent)(new(require("mocha"))()).ui("exports").reporter("spec").addFile(__filename).run(process.exit);