Skip to content

Commit

Permalink
remove the synonym table because it was a bad idea, but le the resolu…
Browse files Browse the repository at this point in the history
…tion of class in the repository because that is indeed a good idea :)
  • Loading branch information
estebanlm committed Apr 8, 2022
1 parent 01d3be9 commit 36a47a7
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 23 deletions.

This file was deleted.

This file was deleted.

Expand Up @@ -4,5 +4,4 @@ initialize
super initialize.
collections := SmallDictionary new.
cacheByCollection := SmallDictionary new.
versionGenerator := self class defaultVersionGenerator.
synonymTable := IdentityDictionary new
versionGenerator := self class defaultVersionGenerator

This file was deleted.

This file was deleted.

Expand Up @@ -10,8 +10,7 @@
"database",
"cacheByCollection",
"versionGenerator",
"collections",
"synonymTable"
"collections"
],
"name" : "VoEJDBRepository",
"type" : "normal"
Expand Down
@@ -0,0 +1,4 @@
private
classForType: aSymbol

^ Smalltalk globals at: aSymbol
@@ -1,6 +1,7 @@
private
obtainRealObject

objectId ifNil: [ ^ nil ].
^ repository
objectWithClass: objectClass
andId: objectId

0 comments on commit 36a47a7

Please sign in to comment.