Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Soil-Core/SoilGraphImporter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ SoilGraphImporter >> import [
[ stream atEnd ] whileFalse: [
clusters add: self readCluster ].

soil objectRepository metaSegment updateLastObjectIndex: (lastIndex at: 1).
soil objectRepository firstSegment updateLastObjectIndex: (lastIndex at: 2)
]

Expand Down Expand Up @@ -72,7 +73,8 @@ SoilGraphImporter >> importBehaviorCluster: cluster [
newOid := self newObjectIdFor: cluster objectId version: 1.
self metaSegment
at: newOid index
putBytes: (cluster asNewClusterVersion version: 1; serialize) ]
putBytes: (cluster asNewClusterVersion version: 1; serialize).
soil behaviorRegistry nameAt: cluster object behaviorIdentifier put: cluster objectId ]
]

{ #category : #'instance creation' }
Expand Down
Loading