Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions bundles/org.eclipse.equinox.p2.repository.tools/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,6 @@
</application>
</extension>

<extension point="org.eclipse.equinox.p2.artifact.repository.artifactComparators">
<artifactComparator
class="org.eclipse.equinox.p2.internal.repository.comparator.MD5ArtifactComparator"
id="org.eclipse.equinox.artifact.md5.comparator">
</artifactComparator>
</extension>
<extension point="org.eclipse.equinox.p2.artifact.repository.artifactComparators">
<artifactComparator
class="org.eclipse.equinox.p2.internal.repository.comparator.ArtifactChecksumComparator"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
import org.eclipse.core.runtime.RegistryFactory;
import org.eclipse.equinox.internal.p2.artifact.processors.checksum.ChecksumUtilities;
import org.eclipse.equinox.internal.p2.artifact.repository.Messages;
import org.eclipse.equinox.p2.internal.repository.comparator.*;
import org.eclipse.equinox.p2.internal.repository.comparator.ArtifactChecksumComparator;
import org.eclipse.equinox.p2.internal.repository.comparator.JarComparator;
import org.eclipse.osgi.util.NLS;

/**
Expand All @@ -39,8 +40,6 @@ public class ArtifactComparatorFactory {
* <ul>
* <li><code>org.eclipse.equinox.p2.repository.tools.jar.comparator</code> for
* {@link JarComparator}</li>
* <li><code>org.eclipse.equinox.artifact.md5.comparator</code> for
* {@link MD5ArtifactComparator}</li>
* </ul>
*
* For {@link ArtifactChecksumComparator}, there is no static id that could be
Expand Down
Loading