Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2019-07-13 06:10:55 +0000
committerVikas Chandra2019-07-16 03:32:14 +0000
commit856d17adc0ca5cb3a68ab55ac3e730688ff34572 (patch)
tree4d5cce2d57ef1a0a1b05bd1a77e59a8479b2d2b5
parent513b459b82e4aa30a430ecc8255122e3b375bba6 (diff)
downloadeclipse.pde.build-BETA_JAVA13.tar.gz
eclipse.pde.build-BETA_JAVA13.tar.xz
eclipse.pde.build-BETA_JAVA13.zip
Compilation failure Change-Id: I7350ecfb3ba6caf9ca8aa4facaa9d509630d5eec Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com> (cherry picked from commit d9085d3feee7aad1cc244e1d42920e90da26fe17)
-rw-r--r--org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
index 7016ef4f..9e5f6d71 100644
--- a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
+++ b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/P2Tests.java
@@ -608,7 +608,7 @@ public class P2Tests extends P2TestCase {
return;
IFile artifact = repository.getFile(getArtifactLocation(descriptor));
- String actualMD5 = ChecksumProducer.produce(artifact.getLocation().toFile(), "MD5");
+ String actualMD5 = ChecksumProducer.computeMD5(artifact.getLocation().toFile());
assertEquals(md5, actualMD5);
}

Back to the top