summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Arès <hugo.ares@ericsson.com>2015-09-16 13:22:15 -0400
committerMatthias Sohn <matthias.sohn@sap.com>2015-09-17 10:19:11 +0200
commit6f3684d7c93e5ccb4cf8e21216e68a9cfa47f6dd (patch)
treea840e302ad74b212f018f504713046dd80b99e50
parent61e1645e04a45cbf657d4b8c81bd61242531043b (diff)
downloadjgit-6f3684d7c93e5ccb4cf8e21216e68a9cfa47f6dd.tar.gz
jgit-6f3684d7c93e5ccb4cf8e21216e68a9cfa47f6dd.zip
Fix integer boxing eclipse warning
Change-Id: I89a8495a799254586016393e51697cfbceacac8b Signed-off-by: Hugo Arès <hugo.ares@ericsson.com>
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/api/StashApplyCommandTest.java2
1 files changed, 1 insertions, 1 deletions
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 95b14192c9..ce235a722f 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());
}
}