From 72024600dbb6a4ffa30943cc2072c1eabf570f01 Mon Sep 17 00:00:00 2001 From: Eugene Zhuravlev Date: Mon, 21 May 2012 16:18:35 +0200 Subject: [PATCH] fixing tests --- .../impl/src/com/intellij/compiler/CompilerManagerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/compiler/impl/src/com/intellij/compiler/CompilerManagerImpl.java b/java/compiler/impl/src/com/intellij/compiler/CompilerManagerImpl.java index dbf1ae9d7258..ed4656825714 100644 --- a/java/compiler/impl/src/com/intellij/compiler/CompilerManagerImpl.java +++ b/java/compiler/impl/src/com/intellij/compiler/CompilerManagerImpl.java @@ -88,7 +88,7 @@ public class CompilerManagerImpl extends CompilerManager { addCompilableFileType(StdFileTypes.JAVA); final File projectGeneratedSrcRoot = CompilerPaths.getGeneratedDataDirectory(project); - FileUtil.createIfDoesntExist(projectGeneratedSrcRoot); + projectGeneratedSrcRoot.mkdirs(); final LocalFileSystem lfs = LocalFileSystem.getInstance(); myWatchRoots = lfs.addRootsToWatch(Collections.singletonList(FileUtil.toCanonicalPath(projectGeneratedSrcRoot.getPath())), true); Disposer.register(project, new Disposable() {