diff --git a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyCachingFileSystem.java b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyCachingFileSystem.java index a071640c9609..edfe7d23592a 100644 --- a/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyCachingFileSystem.java +++ b/platform/platform-impl/src/com/intellij/openapi/vfs/ex/dummy/DummyCachingFileSystem.java @@ -114,6 +114,7 @@ public abstract class DummyCachingFileSystem extends Dumm throw new UnsupportedOperationException("not implemented"); } + @Nullable public Project getProject(String projectId) { List list = myProject2Id.getKeysByValue(projectId); return list == null || list.size() > 1 ? null : list.get(0);