diff --git a/src/GToolkit-RemotePhlow-InspectorCore/GtRsrInspectorProxySerializationStrategy.class.st b/src/GToolkit-RemotePhlow-InspectorCore/GtRsrInspectorProxySerializationStrategy.class.st index 66548755..3d984ee6 100644 --- a/src/GToolkit-RemotePhlow-InspectorCore/GtRsrInspectorProxySerializationStrategy.class.st +++ b/src/GToolkit-RemotePhlow-InspectorCore/GtRsrInspectorProxySerializationStrategy.class.st @@ -10,30 +10,3 @@ GtRsrInspectorProxySerializationStrategy >> deserialize: viewProxyData [ initializeFromProxyData: (viewProxyData at: 'proxyData'); yourself ] - -{ #category : #accessing } -GtRsrInspectorProxySerializationStrategy >> serialize: anObject [ - "Called from GemStone. We defined is also for GT as it does not references GemStone specific classes" - | inspectorWrapper | - inspectorWrapper := GtRemotePhlowViewedObject object: anObject. - ^ self serializedDataForInspectorWrapper: inspectorWrapper -] - -{ #category : #accessing } -GtRsrInspectorProxySerializationStrategy >> serializedDataForInspectorWrapper: anInspectorWrapper [ - "Called from GemStone. We defined is also for GT as it does not references GemStone specific classes" - | dictionaryData proxyData | - - dictionaryData := Dictionary new. - - dictionaryData - at: 'proxyObject' - put: anInspectorWrapper. - - proxyData := anInspectorWrapper getViewsDeclarationsWithPhlowDataSource. - dictionaryData - at: 'proxyData' - put: proxyData. - - ^ dictionaryData asGtRsrProxyObjectForConnection: nil -]