Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-12-17 20:29:59 +0000
committerChris Goldthorpe2007-12-17 20:29:59 +0000
commit23b5bb3069d17c59df63b5f1f18480549a27fb23 (patch)
tree7589592ed2b624b9106c1ea2c2c2c2d8bc54aed4 /org.eclipse.ua.tests/intro/org/eclipse/ua
parent5d34828c74506bc1def7cbbb46f460a6a5840ec8 (diff)
downloadeclipse.platform.ua-23b5bb3069d17c59df63b5f1f18480549a27fb23.tar.gz
eclipse.platform.ua-23b5bb3069d17c59df63b5f1f18480549a27fb23.tar.xz
eclipse.platform.ua-23b5bb3069d17c59df63b5f1f18480549a27fb23.zip
Fix serializer to save file URL of root page without using absolute pathsv20071217
Diffstat (limited to 'org.eclipse.ua.tests/intro/org/eclipse/ua')
-rw-r--r--org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
index 5c4112a8d..fa25b1236 100644
--- a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
+++ b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/util/IntroModelSerializer.java
@@ -99,7 +99,7 @@ public class IntroModelSerializer {
text.append("\n\ttitle = " + rootPage.getTitle()); //$NON-NLS-1$
text.append("\n\tstyle = " + filterURL(rootPage.getStyle())); //$NON-NLS-1$
text.append("\n\talt-style = " + filterURL(rootPage.getAltStyle())); //$NON-NLS-1$
- text.append("\n\turl = " + rootPage.getUrl()); //$NON-NLS-1$
+ text.append("\n\turl = " + filterURL(rootPage.getUrl())); //$NON-NLS-1$
text.append("\n\tstyle-id = " + rootPage.getStyleId()); //$NON-NLS-1$
printPageStyles(rootPage, text);
}

Back to the top