runShell(project);
}
private void runShell(Project project) {
MongoConsoleRunner consoleRunner = new MongoConsoleRunner(project, mongoExplorerPanel.getConfiguration(), mongoExplorerPanel.getSelectedDatabase());
try {
consoleRunner.initAndRun();
} catch (ExecutionException e1) {
throw new RuntimeException(e1);
}
}