File tree Expand file tree Collapse file tree 1 file changed +1
-26
lines changed
services/static-webserver/client/source/class/osparc/data/model Expand file tree Collapse file tree 1 file changed +1
-26
lines changed Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments