From 7db1bedf951c9ac0dd14f3eacf8d1fa348a2ea8a Mon Sep 17 00:00:00 2001 From: "Gregory.Shrago" Date: Sat, 18 Jan 2014 14:03:50 +0400 Subject: [PATCH] EA-53406 - IAE: ServiceManager.getService --- .../intellij/openapi/vfs/ex/dummy/DummyCachingFileSystem.java | 1 + 1 file changed, 1 insertion(+) 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);