Skip to content

Commit

Permalink
Don't store models implicitly in EMG (fixes #141)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolovos committed Dec 9, 2024
1 parent 6f0ac0e commit 4645c77
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,7 @@ protected void prepareContext() throws EolRuntimeException {
@Override
public Object processRules() throws EolRuntimeException {
executeCreateOperations();
super.processRules();
IModel model = context.getModelRepository().getModels().get(0);
model.store();
// TODO Is the total size more important than the matches?
return model.allContents().size();
return super.processRules();
}

/**
Expand Down

0 comments on commit 4645c77

Please sign in to comment.