Skip to content

Commit

Permalink
Merge pull request #862 from ApptiveGrid/small-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
noha authored Nov 19, 2024
2 parents 182fef2 + 0bab090 commit f6825b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Soil-Core/SoilSkipList.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Class {
#category : #'Soil-Core-Index-SkipList'
}

{ #category : #visiting }
{ #category : #accessing }
SoilSkipList >> acceptSoil: aSoilVisitor [
^ aSoilVisitor visitSkipList: self
]
Expand Down
2 changes: 1 addition & 1 deletion src/Soil-Core/SoilSkipListIterator.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,5 @@ SoilSkipListIterator >> size [
headerPage := index headerPage.
^ (readVersion isNil or: [ headerPage lastTransaction > readVersion ])
ifTrue: [ super size]
ifFalse: [ headerPage size ]
ifFalse: [ index size ]
]

0 comments on commit f6825b3

Please sign in to comment.