Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.egit.core.test/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparatorTest.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparatorTest.java b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparatorTest.java
index a0048adf26..c0333197b3 100644
--- a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparatorTest.java
+++ b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/synchronize/GitResourceVariantComparatorTest.java
@@ -487,7 +487,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnFalseWhenBaseDoesntExist() throws Exception {
// when
GitResourceVariantComparator grvc = new GitResourceVariantComparator(
@@ -518,7 +517,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnFalseWhenRemoteVariantDoesntExist()
throws Exception {
// when
@@ -550,7 +548,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnFalseWhenComparingRemoteVariantFileWithContainer()
throws Exception {
// when
@@ -581,7 +578,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnFalseWhenComparingRemoteVariantContainerWithFile()
throws Exception {
// when
@@ -613,7 +609,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnFalseWhenComparingRemoteVariantContainerWithContainer()
throws Exception {
// when
@@ -654,7 +649,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnTrueWhenComparingRemoteVariantContainerWithContainer()
throws Exception {
// when
@@ -681,7 +675,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
}
@Test
- @SuppressWarnings("boxing")
/**
* Comparing two remote files that have different git ObjectId should return false.
*
@@ -717,7 +710,6 @@ public class GitResourceVariantComparatorTest extends GitTestCase {
* @throws Exception
*/
@Test
- @SuppressWarnings("boxing")
public void shouldReturnTrueWhenComparingRemoteVariant() throws Exception {
// when
GitResourceVariantComparator grvc = new GitResourceVariantComparator(

Back to the top