Skip to content

Commit

Permalink
fix bad message sends
Browse files Browse the repository at this point in the history
#fixes #1450
  • Loading branch information
estebanlm committed Dec 19, 2023
1 parent 4a41031 commit 7e61476
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion src/Spec2-Core/SpApplication.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ SpApplication >> ensureConfiguration [

configuration ifNotNil: [ ^ configuration ].
self ensureBackend.
configuration ifNil: [ configuration := backend newDefaultConfiguration ].
configuration ifNil: [ configuration := backend defaultConfigurationFor: self ].

^ configuration
]
Expand Down
8 changes: 0 additions & 8 deletions src/Spec2-Core/SpApplicationBackend.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,6 @@ SpApplicationBackend >> name [
^ self class backendName
]

{ #category : 'ui - notifying' }
SpApplicationBackend >> notify: aSpecNotification [

aSpecNotification type
notify: aSpecNotification
on: self
]

{ #category : 'ui - notifying' }
SpApplicationBackend >> notifyError: aSpecNotification [

Expand Down

0 comments on commit 7e61476

Please sign in to comment.