Skip to content

Commit

Permalink
JBIDE-15178 Errors when closing and reopening a maven project
Browse files Browse the repository at this point in the history
Do not create missing resource when loading model.
  • Loading branch information
scabanovich committed Jul 15, 2013
1 parent 1d983b6 commit 352d99f
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,6 @@ public IContainer getResource() {
ModelPlugin.getPluginLog().logError(e);
}
}
if(!f.exists()) {
try {
if(f.getParent() != null && f.getParent().exists()) {
f.create(true, true, null);
}
} catch (CoreException e) {
ModelPlugin.getPluginLog().logError(e);
}
}
return resource = f;
}

Expand Down

0 comments on commit 352d99f

Please sign in to comment.