SmudgeFilter: Fix Integer boxing warning

Change-Id: Ic00bcd25b0808a58880a4433d76b3b5a6a4ee5c7
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-03-05 10:57:41 +09:00
parent 60b43c03e2
commit 52383c2919
1 changed files with 2 additions and 1 deletions

View File

@ -185,7 +185,8 @@ public static Collection<Path> downloadLfsResource(Lfs lfs, Repository db,
if (o.error != null) {
throw new IOException(
MessageFormat.format(LfsText.get().protocolError,
o.error.code, o.error.message));
Integer.valueOf(o.error.code),
o.error.message));
}
if (o.actions == null) {
continue;