Skip to content

Commit

Permalink
Added deprecation. Improved expected GS time limit when using indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabacman committed Jan 9, 2024
1 parent 0d2d856 commit 147a608
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions source/Sagan-Deprecated-V8/RepositoryBehavior.extension.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Extension { #name : 'RepositoryBehavior' }

{ #category : '*Sagan-Deprecated-V8' }
RepositoryBehavior >> configureMappingsIn: aBlock [

self
deprecated: 'Use configureWith: instead'
transformWith:
'`@receiver configureMappingsIn: `@argument' -> '`@receiver configureWith: `@argument'.

self configureWith: aBlock
]
1 change: 1 addition & 0 deletions source/Sagan-Deprecated-V8/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : 'Sagan-Deprecated-V8' }
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ GemStoneRepositoryProviderTest >> testSpaceshipQueryingForZeroFirepower [
{ #category : 'private - accessing' }
GemStoneRepositoryProviderTest >> timeLimitInMillisecondsWhenAdding [

^ 2000
^ 200
]

{ #category : 'private - accessing' }
GemStoneRepositoryProviderTest >> timeLimitInMillisecondsWhenQuerying [

^ 100
^ 3
]

{ #category : 'utility' }
Expand Down

0 comments on commit 147a608

Please sign in to comment.