Skip to content
This repository has been archived by the owner on Mar 26, 2023. It is now read-only.

Commit

Permalink
Fix - created an empty file if not went all the way through the wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Feb 11, 2020
1 parent 73c9d2a commit 85989bf
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ public void setVisible(boolean visible) {
};

public EObject getInitialModel() {
if (initialModel == null) {
return creationPage.createInitialModel();
}
EObject ret = initialModel;
if (configurators != null) {
for (InitialObjectConfigurator configurator: configurators) {
Expand Down

0 comments on commit 85989bf

Please sign in to comment.