Skip to content

Commit

Permalink
Adapted to changed in Mole.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabacman committed Jul 6, 2018
1 parent 500a791 commit b4e78d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Stardust/ModelCreationSequence.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ ModelCreationSequence >> initializeStartingAt: aTopLevelCreator notifyingUserInt
| graphBuilder |

errorDisplayStrategy := anErrorDisplayStrategy.
graphBuilder := DirectedGraphBuilder new.
graphBuilder := GraphBuilder new.
graphBuilder addVertex: aTopLevelCreator.
self
configure: graphBuilder
byRelatingRecursivelyDependenciesOf: aTopLevelCreator
keepingTrackOfProgressOn: Set new
whileNotifyingChangesTo: aSupervisor.
creationGraph := graphBuilder build.
creationGraph := graphBuilder buildDirected.
orderedCreators := creationGraph topologicalSort
]

Expand Down

0 comments on commit b4e78d6

Please sign in to comment.