Skip to content

Commit

Permalink
delete the reflection check point for checkpoint.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tangyouyi1513 committed Jan 22, 2018
1 parent 954690f commit 59a94d5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
21 changes: 0 additions & 21 deletions openrasp-plugin-devtool/dist/checkpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,27 +223,6 @@ Object.defineProperty(global, 'CheckPointDeserialization', {
enumerable: true
});

var CheckPointReflection = function () {
function CheckPointReflection(data) {
_classCallCheck(this, CheckPointReflection);

this.clazz = data.clazz;
}

_createClass(CheckPointReflection, null, [{
key: 'name',
get: function get() {
return 'reflection';
}
}]);

return CheckPointReflection;
}();
Object.defineProperty(global, 'CheckPointReflection', {
value: CheckPointReflection,
enumerable: true
});

var CheckPointWebdav = function () {
function CheckPointWebdav(data) {
_classCallCheck(this, CheckPointWebdav);
Expand Down
14 changes: 0 additions & 14 deletions openrasp-plugin-devtool/lib/environment/checkpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,20 +149,6 @@ Object.defineProperty(global, 'CheckPointDeserialization', {
enumerable: true
});

const CheckPointReflection = class {
constructor(data) {
this.clazz = data.clazz;
}

static get name() {
return 'reflection';
}
};
Object.defineProperty(global, 'CheckPointReflection', {
value: CheckPointReflection,
enumerable: true
});

const CheckPointWebdav = class {
constructor(data) {
this.clazz = data.clazz;
Expand Down

0 comments on commit 59a94d5

Please sign in to comment.