Skip to content

Commit c84ee62

Browse files
committed
unused
1 parent d4d0fca commit c84ee62

File tree

1 file changed

+1
-26
lines changed
  • services/static-webserver/client/source/class/osparc/data/model

1 file changed

+1
-26
lines changed

services/static-webserver/client/source/class/osparc/data/model/Service.js

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ qx.Class.define("osparc.data.model.Service", {
147147
nullable: false
148148
},
149149

150-
// ------ ignore for serializing ------
151150
xType: {
152151
check: "String",
153152
nullable: true,
@@ -160,30 +159,6 @@ qx.Class.define("osparc.data.model.Service", {
160159
init: 0,
161160
event: "changeHits",
162161
nullable: false
163-
}
164-
// ------ ignore for serializing ------
165-
},
166-
167-
statics: {
168-
IgnoreSerializationProps: [
169-
"xType",
170-
"hits",
171-
]
162+
},
172163
},
173-
174-
members: {
175-
__serviceData: null,
176-
177-
serialize: function() {
178-
let jsonObject = {};
179-
const propertyKeys = this.self().getProperties();
180-
propertyKeys.forEach(key => {
181-
if (this.self().IgnoreSerializationProps.includes(key)) {
182-
return;
183-
}
184-
jsonObject[key] = this.get(key);
185-
});
186-
return jsonObject;
187-
},
188-
}
189164
});

0 commit comments

Comments
 (0)