Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-11-09 23:20:54 +0000
committerGerrit Code Review @ Eclipse.org2013-11-10 21:00:12 +0000
commit1ec72e9a1c36ca6f18720e381f214dda1895e8a4 (patch)
tree7aafbebd988fcc6d00e6bc7630710c7bdaff5da1 /org.eclipse.jgit.test
parent2765cc1871d7efe86df45b68caed593e851ab4df (diff)
downloadjgit-1ec72e9a1c36ca6f18720e381f214dda1895e8a4.tar.gz
jgit-1ec72e9a1c36ca6f18720e381f214dda1895e8a4.tar.xz
jgit-1ec72e9a1c36ca6f18720e381f214dda1895e8a4.zip
Remove unnecessary @SuppressWarnings("null")
Change-Id: I5bddcdab2c5cc92622144a7b207bad90cb601609 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitOnlyTest.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitOnlyTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitOnlyTest.java
index b885504199..336a335663 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitOnlyTest.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CommitOnlyTest.java
@@ -1043,7 +1043,6 @@ public class CommitOnlyTest extends RepositoryTestCase {
return f1;
}
- @SuppressWarnings("null")
private void executeAndCheck_f1_1(final Git git, final int state)
throws Exception {
JGitInternalException exception = null;
@@ -1059,7 +1058,6 @@ public class CommitOnlyTest extends RepositoryTestCase {
assertEquals(expected_f3_idx(state), indexState(CONTENT));
}
- @SuppressWarnings("null")
private void executeAndCheck_f1_1_f2_f14(final Git git, final int state)
throws Exception {
JGitInternalException exception = null;
@@ -1077,7 +1075,6 @@ public class CommitOnlyTest extends RepositoryTestCase {
+ expected_f3_idx(state), indexState(CONTENT));
}
- @SuppressWarnings("null")
private void executeAndCheck_f1_2(final Git git, final int state)
throws Exception {
JGitInternalException exception = null;
@@ -1129,7 +1126,6 @@ public class CommitOnlyTest extends RepositoryTestCase {
executeAndCheck_f1_3(git, state);
}
- @SuppressWarnings("null")
private void executeAndCheck_f1_6(final Git git, final int state)
throws Exception {
JGitInternalException exception = null;
@@ -1192,7 +1188,6 @@ public class CommitOnlyTest extends RepositoryTestCase {
executeAndCheck_f1_8(git, state);
}
- @SuppressWarnings("null")
private void executeAndCheck_f1_12(final Git git, final int state)
throws Exception {
JGitInternalException exception = null;

Back to the top