Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault (Ericsson)2013-01-28 18:31:09 +0000
committerPascal Rapicault2013-01-28 18:31:54 +0000
commit7f6c2dbb7fe7118944bb19efc32c46b1a96b0bf3 (patch)
tree7a5564f79745250873f73c8e6feb00d52c82e60e
parent98ec6c9475bc2732d92a8800e5deb0bfc436696a (diff)
downloadrt.equinox.p2-7f6c2dbb7fe7118944bb19efc32c46b1a96b0bf3.tar.gz
rt.equinox.p2-7f6c2dbb7fe7118944bb19efc32c46b1a96b0bf3.tar.xz
rt.equinox.p2-7f6c2dbb7fe7118944bb19efc32c46b1a96b0bf3.zip
Fix compile because of dependency on 1.7 APIv20130128-183154
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTest.java
index 0d964ac49..6fc44805d 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/simpleconfigurator/SimpleConfiguratorTest.java
@@ -42,7 +42,7 @@ public class SimpleConfiguratorTest extends AbstractProvisioningTest {
File f = new File(userConfiguration.getParent(), SimpleConfiguratorImpl.BASE_TIMESTAMP_FILE_BUNDLESINFO);
Properties p = new Properties();
p.put(SimpleConfiguratorImpl.KEY_BUNDLESINFO_TIMESTAMP, "" + timestamp);
- p.store(new FileWriter(f), "");
+ p.store(new FileOutputStream(f), "");
}
@Override

Back to the top