@Override
 public void addDefaultImports(@NotNull Collection<JetImportDirective> directives) {
   for (ImportPath importPath : DEFAULT_JAVA_IMPORTS) {
     directives.add(JetPsiFactory.createImportDirective(project, importPath));
   }
   delegateConfiguration.addDefaultImports(directives);
 }