Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2010-09-04 21:57:25 +0000
committerRobin Rosenberg2010-09-04 21:57:25 +0000
commit658b19a7b017ad3a58589908874689f052ec4e05 (patch)
treebaf3a55792b1097b7753981e7855c0327e2e2636 /org.eclipse.egit.core.test/src/org/eclipse/egit
parentaa7b1ea7ddab6f32d2d6ca0c5d7f5b487ebd4306 (diff)
downloadegit-658b19a7b017ad3a58589908874689f052ec4e05.tar.gz
egit-658b19a7b017ad3a58589908874689f052ec4e05.tar.xz
egit-658b19a7b017ad3a58589908874689f052ec4e05.zip
cleanup: Remove unnecessary @SuppressWarnings
Change-Id: Ic9a424cfdfcebbf2ff548f6741d2f96a1494df0e Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.egit.core.test/src/org/eclipse/egit')
-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