From 6f3684d7c93e5ccb4cf8e21216e68a9cfa47f6dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Ar=C3=A8s?= Date: Wed, 16 Sep 2015 13:22:15 -0400 Subject: [PATCH] Fix integer boxing eclipse warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I89a8495a799254586016393e51697cfbceacac8b Signed-off-by: Hugo Arès --- .../tst/org/eclipse/jgit/api/StashApplyCommandTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java index 95b14192c..ce235a722 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java +++ b/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()); } }