Skip to content

Commit

Permalink
Merge pull request #158 from lopezca/fix-database-accessor-dependents
Browse files Browse the repository at this point in the history
Fix database accessor dependents
  • Loading branch information
astares authored Dec 22, 2024
2 parents 8e5c174 + c36877f commit 50f9775
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion src/BaselineOfGlorp/BaselineOfGlorp.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BaselineOfGlorp >> baseline: spec [
spec group: 'Glorp-Tests' with: 'Tests'
].
spec
for: #(#'pharo10.x' #'pharo11.x')
for: #(#'pharo10.x' #'pharo11.x' #'pharo12.x')
do: [ spec
package: 'Glorp-Pharo10';
group: 'Core' with: 'Glorp-Pharo10'
Expand Down
13 changes: 0 additions & 13 deletions src/Glorp/DatabaseAccessor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ Class {
'reusePreparedStatements',
'deniedCommands',
'mutex',
'dependents',
'logOnly',
'logger'
],
Expand Down Expand Up @@ -988,18 +987,6 @@ DatabaseAccessor >> logout [
^ self subclassResponsibility
]

{ #category : #dependencies }
DatabaseAccessor >> myDependents [

^ dependents
]

{ #category : #dependencies }
DatabaseAccessor >> myDependents: aCollection [

dependents := aCollection
]

{ #category : #accessing }
DatabaseAccessor >> numberOfPreparedStatements [

Expand Down

0 comments on commit 50f9775

Please sign in to comment.