Browse Source

SmudgeFilter: Fix Integer boxing warning

Change-Id: Ic00bcd25b0808a58880a4433d76b3b5a6a4ee5c7
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-4.11
David Pursehouse 7 years ago
parent
commit
52383c2919
  1. 3
      org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/SmudgeFilter.java

3
org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/SmudgeFilter.java

@ -185,7 +185,8 @@ public class SmudgeFilter extends FilterCommand {
if (o.error != null) { if (o.error != null) {
throw new IOException( throw new IOException(
MessageFormat.format(LfsText.get().protocolError, MessageFormat.format(LfsText.get().protocolError,
o.error.code, o.error.message)); Integer.valueOf(o.error.code),
o.error.message));
} }
if (o.actions == null) { if (o.actions == null) {
continue; continue;

Loading…
Cancel
Save