Browse Source

Fix integer boxing eclipse warning

Change-Id: I89a8495a799254586016393e51697cfbceacac8b
Signed-off-by: Hugo Arès <hugo.ares@ericsson.com>
stable-4.1
Hugo Arès 9 years ago committed by Matthias Sohn
parent
commit
6f3684d7c9
  1. 2
      org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java

2
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java

@ -609,7 +609,7 @@ public class StashApplyCommandTest extends RepositoryTestCase {
} catch (JGitInternalException e) {
assertEquals(MessageFormat.format(
JGitText.get().stashCommitIncorrectNumberOfParents,
head.name(), 0),
head.name(), "0"),
e.getMessage());
}
}

Loading…
Cancel
Save