Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2008-05-05 21:21:02 +0000
committerChris Goldthorpe2008-05-05 21:21:02 +0000
commitfe65d02bf11dcde0197ba2a294b881694f7f0627 (patch)
tree47f898bf2b3c309482d54728e850359c3485d8c0 /org.eclipse.ua.tests/cheatsheet
parentf25bc56367423ece6ac455837fc4f2c5ff1b1fb6 (diff)
downloadeclipse.platform.ua-fe65d02bf11dcde0197ba2a294b881694f7f0627.tar.gz
eclipse.platform.ua-fe65d02bf11dcde0197ba2a294b881694f7f0627.tar.xz
eclipse.platform.ua-fe65d02bf11dcde0197ba2a294b881694f7f0627.zip
Bug 229895 – [CheatSheet] NPE when opening a cheatsheet whose content file does not existv20080505
Diffstat (limited to 'org.eclipse.ua.tests/cheatsheet')
-rw-r--r--org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/ParseFromString.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/ParseFromString.java b/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/ParseFromString.java
index 198c12cc4..aed62b4b6 100644
--- a/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/ParseFromString.java
+++ b/org.eclipse.ua.tests/cheatsheet/org/eclipse/ua/tests/cheatsheet/parser/ParseFromString.java
@@ -63,7 +63,7 @@ public class ParseFromString extends TestCase {
public void testUrlParserInput() {
URL testURL = ResourceFinder.findFile(UserAssistanceTestPlugin.getDefault(),
"data/cheatsheet/valid/HelloWorld.xml");
- ParserInput input = new ParserInput(testURL, UserAssistanceTestPlugin.getPluginId());
+ ParserInput input = new ParserInput(testURL, UserAssistanceTestPlugin.getPluginId(), null);
assertNull(input.getXml());
assertTrue(testURL.equals(input.getUrl()));
}

Back to the top