Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2008-03-04 10:47:59 +0000
committerDJ Houghton2008-03-04 10:47:59 +0000
commit6a2a4949cf653928e5784ef5fd392c092010371a (patch)
treedcd439c320ae6966da5a58482608adf6e29b6b08 /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher
parentad72d19e3281843cdf9812591bcd33f2910c187f (diff)
downloadrt.equinox.p2-6a2a4949cf653928e5784ef5fd392c092010371a.tar.gz
rt.equinox.p2-6a2a4949cf653928e5784ef5fd392c092010371a.tar.xz
rt.equinox.p2-6a2a4949cf653928e5784ef5fd392c092010371a.zip
Bug 221254 - Problems with dropins on second startv200803040725
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher/DirectoryWatcherTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher/DirectoryWatcherTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher/DirectoryWatcherTest.java
index 6d69f3506..f9da12a0a 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher/DirectoryWatcherTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/directorywatcher/DirectoryWatcherTest.java
@@ -27,7 +27,7 @@ public class DirectoryWatcherTest extends AbstractProvisioningTest {
public void testCreateDirectoryWatcherNullDirectory() throws Exception {
try {
- new DirectoryWatcher(null);
+ new DirectoryWatcher((File) null);
} catch (IllegalArgumentException e) {
return;
}

Back to the top