Skip to content

Commit

Permalink
Removes debugger; statetements, includng one active.
Browse files Browse the repository at this point in the history
  • Loading branch information
marchant committed Dec 22, 2018
1 parent 7738076 commit 55097e1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/serialization/deserializer/montage-reviver.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ var MontageReviver = exports.MontageReviver = Montage.specialize(/** @lends Mont
// and stop the execution. This is intended to provide a certain
// level of debugging in the serialization.
if (value.debugger) {
debugger; // jshint ignore:line
console.debug("set a breakpoint here");
}

if ("value" in value) {
Expand Down
4 changes: 1 addition & 3 deletions data/service/data-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -1007,13 +1007,11 @@ exports.DataService = Montage.specialize(/** @lends DataService.prototype */ {

// __object__snapshotMethodImplementation: {
// value: function() {
// debugger;
// return exports.DataService.mainService._getChildServiceForObject(this).snapshotForObject(this);
// }
// },
// __object_primaryKeyMethodImplementation: {
// value: function() {
// debugger;
// return exports.DataService.mainService.dataIdentifierForObject(this).primaryKey;
// }
// },
Expand Down Expand Up @@ -1807,7 +1805,7 @@ exports.DataService = Montage.specialize(/** @lends DataService.prototype */ {
self.authorization = authorization;
return authorization;
});

}
}
this.authorizationPromise.then(function (authorization) {
Expand Down
2 changes: 1 addition & 1 deletion data/service/raw-data-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ exports.RawDataService = DataService.specialize(/** @lends RawDataService.protot
// which is a constant reference and won't cause unexpected
// behavior due to iteration.
// if (streamSelectorType.name && streamSelectorType.name.toUpperCase().indexOf("BSP") !== -1) {
// debugger;
// console.debug("set a breakpoint here");
// }
this.addOneRawData(stream, records[i], context, streamSelectorType);
/*jshint +W083*/
Expand Down
1 change: 0 additions & 1 deletion ui/succession.info/sample/ui/main.reel/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ exports.Main = Component.specialize({
// if (change.name === '_inDocument') {
// console.log("Property " + '_inDocument' + " changed");
// console.log(change);
// debugger;
// }
// });
//})
Expand Down

0 comments on commit 55097e1

Please sign in to comment.