Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2009-04-27 21:43:14 +0000
committerAndrew Niefer2009-04-27 21:43:14 +0000
commit1852fd5235288d9878d0691edcdfd8239253ebeb (patch)
tree84ad2596da7caa645fcbc17b1d7d32d1d01c2a52
parentbc1408a53ce4ffc4c2884dbaf831acaafad9321e (diff)
downloadrt.equinox.p2-1852fd5235288d9878d0691edcdfd8239253ebeb.tar.gz
rt.equinox.p2-1852fd5235288d9878d0691edcdfd8239253ebeb.tar.xz
rt.equinox.p2-1852fd5235288d9878d0691edcdfd8239253ebeb.zip
fix broken testsv20090427-1745
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AbstractAdvice.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AbstractAdvice.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AbstractAdvice.java
index d63832e65..0896a311c 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AbstractAdvice.java
+++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AbstractAdvice.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008 Code 9 and others. All rights reserved. This
+ * Copyright (c) 2008, 2009 Code 9 and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@@ -9,8 +9,6 @@
******************************************************************************/
package org.eclipse.equinox.p2.publisher;
-
-
import org.eclipse.equinox.internal.provisional.p2.core.Version;
import org.eclipse.equinox.internal.provisional.p2.core.VersionRange;
@@ -21,6 +19,8 @@ public class AbstractAdvice implements IPublisherAdvice {
}
protected boolean matchVersion(Version version) {
+ if (version == null)
+ return true;
Version adviceVersion = getVersion();
if (adviceVersion != null)
return version.equals(adviceVersion);
@@ -39,6 +39,8 @@ public class AbstractAdvice implements IPublisherAdvice {
}
protected boolean matchId(String id) {
+ if (id == null)
+ return true;
String adviceId = getId();
return adviceId == null ? true : adviceId.equals(id);
}

Back to the top