| Index: plugins/org.chromium.debug.core/src/org/chromium/debug/core/VProjectSourceContainer.java
|
| diff --git a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/VProjectSourceContainer.java b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/VProjectSourceContainer.java
|
| index cb4df6a1cc3c952cb1609883ff8405c9a1314b22..aaff8c70c1e9d58f64740f05be0a7fb63c6b911c 100644
|
| --- a/plugins/org.chromium.debug.core/src/org/chromium/debug/core/VProjectSourceContainer.java
|
| +++ b/plugins/org.chromium.debug.core/src/org/chromium/debug/core/VProjectSourceContainer.java
|
| @@ -49,11 +49,7 @@ public class VProjectSourceContainer implements ISourceContainer {
|
| return new Object[0];
|
| }
|
| ResourceManager resourceManager = chromiumSourceDirector.getResourceManager();
|
| - IFile file = resourceManager.getFile(name);
|
| - if (file == null) {
|
| - return new Object[0];
|
| - }
|
| - return new Object[] { file };
|
| + return new Object[] { resourceManager };
|
| }
|
|
|
| public String getName() {
|
|
|