scheduler-node-models 1.0.70 → 1.0.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -108,9 +108,6 @@ class Employee {
108
108
  if (emp && emp.work && emp.work.length > 0) {
109
109
  this.work = [];
110
110
  emp.work.forEach(w => {
111
- if (emp.name.lastname.toLowerCase() === 'erne') {
112
- console.log(JSON.stringify(w));
113
- }
114
111
  this.work.push(new work_1.Work(w));
115
112
  });
116
113
  this.work.sort((a, b) => a.compareTo(b));