Skip to content

Commit

Permalink
Removed notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Jul 25, 2024
1 parent c74ec96 commit 969ca8f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions repository/OpenPonk-Core/OPMementoDirectorySerializer.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,6 @@ OPMementoDirectorySerializer >> loadMementoFrom: aFolder [
(modelDir exists and: [ modelDir isDirectory ]) ifFalse: [
modelDir := aFolder ].
model := self loadModelFrom: modelDir.
(OPNavigatorAdapters new allChildrenFor: model) do: [ :each |
SystemNotification signal: 'Loaded UUID from slot: ' , (each class
slotNamed: 'uuid'
ifFound: [ :slot | slot read: each ]
ifNone: [ 'No such slot' ]) asString.
SystemNotification signal:
'Loaded UUID from method: ' , each uuid asString ].
^ OPMemento
model: model
diagrams: (self loadDiagramsOf: model from: aFolder / 'diagrams')
Expand Down Expand Up @@ -127,13 +120,6 @@ OPMementoDirectorySerializer >> saveMemento: aMemento to: aFolder [
OPMementoDirectorySerializer >> saveModelOf: aMemento to: aFolder [

| modelSerializer |
(OPNavigatorAdapters new allChildrenFor: aMemento model) do: [ :each |
SystemNotification signal: 'Saving UUID from slot: ' , (each class
slotNamed: 'uuid'
ifFound: [ :slot | slot read: each ]
ifNone: [ 'No such slot' ]) asString.
SystemNotification signal:
'Saving UUID from method: ' , each uuid asString ].
modelSerializer := plugin modelSerializerClass new.
modelSerializer class saveExportInfoTo: aFolder.
(aFolder / 'model' , modelSerializer fileExtension)
Expand Down

0 comments on commit 969ca8f

Please sign in to comment.