Browse Source

Remove 86 boxing warnings

Use Integer, Character, and Long valueOf methods when
passing parameters to MessageFormat and other places
that expect objects instead of primitives

Change-Id: I5942fbdbca6a378136c00d951ce61167f2366ca4
tags/v2.0.0.201206130900-r
Kevin Sawicki 12 years ago
parent
commit
17fb542e9e
32 changed files with 160 additions and 96 deletions
  1. 3
    3
      org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java
  2. 9
    5
      org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java
  3. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/errors/LargeObjectException.java
  4. 2
    2
      org.eclipse.jgit/src/org/eclipse/jgit/errors/TooLargeObjectInPackException.java
  5. 4
    2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/AbbreviatedObjectId.java
  6. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java
  7. 4
    2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java
  8. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java
  9. 6
    2
      org.eclipse.jgit/src/org/eclipse/jgit/patch/CombinedHunkHeader.java
  10. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/patch/FileHeader.java
  11. 4
    2
      org.eclipse.jgit/src/org/eclipse/jgit/patch/HunkHeader.java
  12. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotCommitList.java
  13. 6
    4
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java
  14. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevObjectList.java
  15. 6
    4
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java
  16. 28
    19
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java
  17. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackIndex.java
  18. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackIndexWriter.java
  19. 8
    6
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java
  20. 2
    2
      org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackWriter.java
  21. 7
    4
      org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java
  22. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackPushConnection.java
  23. 23
    17
      org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java
  24. 3
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java
  25. 9
    3
      org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandOutputStream.java
  26. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportHttp.java
  27. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportSftp.java
  28. 4
    2
      org.eclipse.jgit/src/org/eclipse/jgit/transport/WalkFetchConnection.java
  29. 2
    2
      org.eclipse.jgit/src/org/eclipse/jgit/util/Base64.java
  30. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/io/InterruptTimer.java
  31. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutInputStream.java
  32. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutOutputStream.java

+ 3
- 3
org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java View File

@@ -301,21 +301,21 @@ public class MyersDiff<S extends Sequence> {
final int getIndex(int d, int k) {
// TODO: remove
if (((d + k - middleK) % 2) != 0)
throw new RuntimeException(MessageFormat.format(JGitText.get().unexpectedOddResult, d, k, middleK));
throw new RuntimeException(MessageFormat.format(JGitText.get().unexpectedOddResult, Integer.valueOf(d), Integer.valueOf(k), Integer.valueOf(middleK)));
return (d + k - middleK) / 2;
}

final int getX(int d, int k) {
// TODO: remove
if (k < beginK || k > endK)
throw new RuntimeException(MessageFormat.format(JGitText.get().kNotInRange, k, beginK, endK));
throw new RuntimeException(MessageFormat.format(JGitText.get().kNotInRange, Integer.valueOf(k), Integer.valueOf(beginK), Integer.valueOf(endK)));
return x.get(getIndex(d, k));
}

final long getSnake(int d, int k) {
// TODO: remove
if (k < beginK || k > endK)
throw new RuntimeException(MessageFormat.format(JGitText.get().kNotInRange, k, beginK, endK));
throw new RuntimeException(MessageFormat.format(JGitText.get().kNotInRange, Integer.valueOf(k), Integer.valueOf(beginK), Integer.valueOf(endK)));
return snake.get(getIndex(d, k));
}


+ 9
- 5
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java View File

@@ -398,7 +398,8 @@ public class DirCache {
if (ver == 3)
extended = true;
else if (ver != 2)
throw new CorruptObjectException(MessageFormat.format(JGitText.get().unknownDIRCVersion, ver));
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().unknownDIRCVersion, Integer.valueOf(ver)));
entryCnt = NB.decodeInt32(hdr, 8);
if (entryCnt < 0)
throw new CorruptObjectException(JGitText.get().DIRCHasTooManyEntries);
@@ -433,8 +434,9 @@ public class DirCache {
switch (NB.decodeInt32(hdr, 0)) {
case EXT_TREE: {
if (Integer.MAX_VALUE < sz) {
throw new CorruptObjectException(MessageFormat.format(JGitText.get().DIRCExtensionIsTooLargeAt
, formatExtensionName(hdr), sz));
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().DIRCExtensionIsTooLargeAt,
formatExtensionName(hdr), Long.valueOf(sz)));
}
final byte[] raw = new byte[(int) sz];
IO.readFully(in, raw, 0, raw.length);
@@ -474,8 +476,10 @@ public class DirCache {
while (0 < sz) {
int n = in.read(b, 0, (int) Math.min(b.length, sz));
if (n < 0) {
throw new EOFException(MessageFormat.format(JGitText.get().shortReadOfOptionalDIRCExtensionExpectedAnotherBytes
, formatExtensionName(hdr), sz));
throw new EOFException(
MessageFormat.format(
JGitText.get().shortReadOfOptionalDIRCExtensionExpectedAnotherBytes,
formatExtensionName(hdr), Long.valueOf(sz)));
}
md.update(b, 0, n);
sz -= n;

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/errors/LargeObjectException.java View File

@@ -157,7 +157,7 @@ public class LargeObjectException extends RuntimeException {
@Override
public String getMessage() {
return MessageFormat.format(JGitText.get().largeObjectExceedsLimit,
getObjectName(), limit, size);
getObjectName(), Long.valueOf(limit), Long.valueOf(size));
}
}
}

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/errors/TooLargeObjectInPackException.java View File

@@ -64,7 +64,7 @@ public class TooLargeObjectInPackException extends IOException {
*/
public TooLargeObjectInPackException(long maxObjectSizeLimit) {
super(MessageFormat.format(JGitText.get().receivePackObjectTooLarge1,
maxObjectSizeLimit));
Long.valueOf(maxObjectSizeLimit)));
}

/**
@@ -77,6 +77,6 @@ public class TooLargeObjectInPackException extends IOException {
public TooLargeObjectInPackException(long objectSize,
long maxObjectSizeLimit) {
super(MessageFormat.format(JGitText.get().receivePackObjectTooLarge2,
objectSize, maxObjectSizeLimit));
Long.valueOf(objectSize), Long.valueOf(maxObjectSizeLimit)));
}
}

+ 4
- 2
org.eclipse.jgit/src/org/eclipse/jgit/lib/AbbreviatedObjectId.java View File

@@ -101,8 +101,10 @@ public final class AbbreviatedObjectId implements Serializable {
public static final AbbreviatedObjectId fromString(final byte[] buf,
final int offset, final int end) {
if (end - offset > Constants.OBJECT_ID_STRING_LENGTH)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidIdLength
, end - offset, Constants.OBJECT_ID_STRING_LENGTH));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidIdLength,
Integer.valueOf(end - offset),
Integer.valueOf(Constants.OBJECT_ID_STRING_LENGTH)));
return fromHexString(buf, offset, end);
}


+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java View File

@@ -1204,7 +1204,9 @@ public class Config {
value.append('"');
continue;
default:
throw new ConfigInvalidException(MessageFormat.format(JGitText.get().badEscape, ((char) c)));
throw new ConfigInvalidException(MessageFormat.format(
JGitText.get().badEscape,
Character.valueOf(((char) c))));
}
}


+ 4
- 2
org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java View File

@@ -375,7 +375,8 @@ public final class Constants {
case OBJ_TAG:
return TYPE_TAG;
default:
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().badObjectType, typeCode));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().badObjectType, Integer.valueOf(typeCode)));
}
}

@@ -399,7 +400,8 @@ public final class Constants {
case OBJ_TAG:
return ENCODED_TYPE_TAG;
default:
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().badObjectType, typeCode));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().badObjectType, Integer.valueOf(typeCode)));
}
}


+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java View File

@@ -127,7 +127,8 @@ public class ObjectChecker {
break;
default:
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().corruptObjectInvalidType2, objType));
JGitText.get().corruptObjectInvalidType2,
Integer.valueOf(objType)));
}
}


+ 6
- 2
org.eclipse.jgit/src/org/eclipse/jgit/patch/CombinedHunkHeader.java View File

@@ -186,13 +186,17 @@ public class CombinedHunkHeader extends HunkHeader {
if (cmp < o.lineCount) {
final int missingCnt = o.lineCount - cmp;
script.error(buf, startOffset, MessageFormat.format(
JGitText.get().truncatedHunkLinesMissingForAncestor, missingCnt, (ancestor + 1)));
JGitText.get().truncatedHunkLinesMissingForAncestor,
Integer.valueOf(missingCnt),
Integer.valueOf(ancestor + 1)));
}
}

if (nContext + nAdded < newLineCount) {
final int missingCount = newLineCount - (nContext + nAdded);
script.error(buf, startOffset, MessageFormat.format(JGitText.get().truncatedHunkNewLinesMissing, missingCount));
script.error(buf, startOffset, MessageFormat.format(
JGitText.get().truncatedHunkNewLinesMissing,
Integer.valueOf(missingCount)));
}

return c;

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/patch/FileHeader.java View File

@@ -218,7 +218,9 @@ public class FileHeader extends DiffEntry {
}

if (charsetGuess != null && charsetGuess.length != getParentCount() + 1)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().expectedCharacterEncodingGuesses, (getParentCount() + 1)));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().expectedCharacterEncodingGuesses,
Integer.valueOf(getParentCount() + 1)));

if (trySimpleConversion(charsetGuess)) {
Charset cs = charsetGuess != null ? charsetGuess[0] : null;

+ 4
- 2
org.eclipse.jgit/src/org/eclipse/jgit/patch/HunkHeader.java View File

@@ -300,12 +300,14 @@ public class HunkHeader {
if (nContext + old.nDeleted < old.lineCount) {
final int missingCount = old.lineCount - (nContext + old.nDeleted);
script.error(buf, startOffset, MessageFormat.format(
JGitText.get().truncatedHunkOldLinesMissing, missingCount));
JGitText.get().truncatedHunkOldLinesMissing,
Integer.valueOf(missingCount)));

} else if (nContext + old.nAdded < newLineCount) {
final int missingCount = newLineCount - (nContext + old.nAdded);
script.error(buf, startOffset, MessageFormat.format(
JGitText.get().truncatedHunkNewLinesMissing, missingCount));
JGitText.get().truncatedHunkNewLinesMissing,
Integer.valueOf(missingCount)));

} else if (nContext + old.nDeleted > old.lineCount
|| nContext + old.nAdded > newLineCount) {

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotCommitList.java View File

@@ -231,7 +231,7 @@ public class PlotCommitList<L extends PlotLane> extends
}
if (newPos == -1)
newPos = positionsAllocated++;
freePositions.add(commit.lane.getPosition());
freePositions.add(Integer.valueOf(commit.lane.getPosition()));
activeLanes.remove(commit.lane);
commit.lane.position = newPos;
activeLanes.add(commit.lane);

+ 6
- 4
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ObjectWalk.java View File

@@ -351,7 +351,8 @@ public class ObjectWalk extends RevWalk {
default:
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().corruptObjectInvalidMode3,
String.format("%o", mode), idBuffer.name(),
String.format("%o", Integer.valueOf(mode)),
idBuffer.name(),
RawParseUtils.decode(buf, tv.namePtr, tv.nameEnd),
tv.obj));
}
@@ -702,9 +703,10 @@ public class ObjectWalk extends RevWalk {

default:
idBuffer.fromRaw(raw, ptr);
throw new CorruptObjectException(MessageFormat.format(JGitText
.get().corruptObjectInvalidMode3, String.format("%o",
mode), idBuffer.name(), "", tree));
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().corruptObjectInvalidMode3,
String.format("%o", Integer.valueOf(mode)),
idBuffer.name(), "", tree));
}
ptr += ID_SZ;
}

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevObjectList.java View File

@@ -80,7 +80,9 @@ public class RevObjectList<E extends RevObject> extends AbstractList<E> {

public void add(final int index, final E element) {
if (index != size)
throw new UnsupportedOperationException(MessageFormat.format(JGitText.get().unsupportedOperationNotAddAtEnd, index));
throw new UnsupportedOperationException(MessageFormat.format(
JGitText.get().unsupportedOperationNotAddAtEnd,
Integer.valueOf(index)));
set(index, element);
size++;
}

+ 6
- 4
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java View File

@@ -682,7 +682,8 @@ public class RevWalk implements Iterable<RevCommit> {
r = new RevTag(id);
break;
default:
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidGitType, type));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidGitType, Integer.valueOf(type)));
}
objects.add(r);
}
@@ -843,8 +844,8 @@ public class RevWalk implements Iterable<RevCommit> {
break;
}
default:
throw new IllegalArgumentException(MessageFormat.format(JGitText
.get().badObjectType, type));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().badObjectType, Integer.valueOf(type)));
}
objects.add(r);
return r;
@@ -1026,7 +1027,8 @@ public class RevWalk implements Iterable<RevCommit> {
int allocFlag() {
if (freeFlags == 0)
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().flagsAlreadyCreated, 32 - RESERVED_FLAGS));
JGitText.get().flagsAlreadyCreated,
Integer.valueOf(32 - RESERVED_FLAGS)));
final int m = Integer.lowestOneBit(freeFlags);
freeFlags &= ~m;
return m;

+ 28
- 19
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackFile.java View File

@@ -306,7 +306,9 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
}

if (curs.inflate(this, position, dstbuf, 0) != sz)
throw new EOFException(MessageFormat.format(JGitText.get().shortCompressedStreamAt, position));
throw new EOFException(MessageFormat.format(
JGitText.get().shortCompressedStreamAt,
Long.valueOf(position)));
return dstbuf;
}

@@ -406,7 +408,7 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
setCorrupt(src.offset);
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().objectAtHasBadZlibStream,
src.offset, getPackFile()));
Long.valueOf(src.offset), getPackFile()));
}
} else if (validate) {
// We don't have a CRC32 code in the index, so compute it
@@ -435,7 +437,7 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
setCorrupt(src.offset);
throw new EOFException(MessageFormat.format(
JGitText.get().shortCompressedStreamAt,
src.offset));
Long.valueOf(src.offset)));
}
expectedCRC = crc1.getValue();
} else {
@@ -447,7 +449,7 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
CorruptObjectException corruptObject = new CorruptObjectException(
MessageFormat.format(
JGitText.get().objectAtHasBadZlibStream,
src.offset, getPackFile()));
Long.valueOf(src.offset), getPackFile()));
corruptObject.initCause(dataFormat);

StoredObjectRepresentationNotAvailableException gone;
@@ -503,9 +505,9 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
cnt -= n;
}
if (validate && crc2.getValue() != expectedCRC) {
throw new CorruptObjectException(MessageFormat.format(JGitText
.get().objectAtHasBadZlibStream, src.offset,
getPackFile()));
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().objectAtHasBadZlibStream,
Long.valueOf(src.offset), getPackFile()));
}
}
}
@@ -650,11 +652,14 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
final long vers = NB.decodeUInt32(buf, 4);
final long packCnt = NB.decodeUInt32(buf, 8);
if (vers != 2 && vers != 3)
throw new IOException(MessageFormat.format(JGitText.get().unsupportedPackVersion, vers));
throw new IOException(MessageFormat.format(
JGitText.get().unsupportedPackVersion, Long.valueOf(vers)));

if (packCnt != idx.getObjectCount())
throw new PackMismatchException(MessageFormat.format(
JGitText.get().packObjectCountMismatch, packCnt, idx.getObjectCount(), getPackFile()));
JGitText.get().packObjectCountMismatch,
Long.valueOf(packCnt), Long.valueOf(idx.getObjectCount()),
getPackFile()));

fd.seek(length - 20);
fd.readFully(buf, 0, 20);
@@ -753,7 +758,8 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, typeCode));
JGitText.get().unknownObjectType,
Integer.valueOf(typeCode)));
}
}

@@ -801,8 +807,8 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
} catch (DataFormatException dfe) {
CorruptObjectException coe = new CorruptObjectException(
MessageFormat.format(
JGitText.get().objectAtHasBadZlibStream, pos,
getPackFile()));
JGitText.get().objectAtHasBadZlibStream,
Long.valueOf(pos), getPackFile()));
coe.initCause(dfe);
throw coe;
}
@@ -906,8 +912,9 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
}

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, type));
throw new IOException(
MessageFormat.format(JGitText.get().unknownObjectType,
Integer.valueOf(type)));
}
}
}
@@ -954,14 +961,15 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, type));
JGitText.get().unknownObjectType, Integer.valueOf(type)));
}

try {
return BinaryDelta.getResultSize(getDeltaHeader(curs, deltaAt));
} catch (DataFormatException e) {
throw new CorruptObjectException(MessageFormat.format(JGitText
.get().objectAtHasBadZlibStream, pos, getPackFile()));
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().objectAtHasBadZlibStream, Long.valueOf(pos),
getPackFile()));
}
}

@@ -1009,8 +1017,9 @@ public class PackFile implements Iterable<PackIndex.MutableEntry> {
}

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, typeCode));
throw new IOException(
MessageFormat.format(JGitText.get().unknownObjectType,
Integer.valueOf(typeCode)));
}
}


+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackIndex.java View File

@@ -136,7 +136,9 @@ public abstract class PackIndex implements Iterable<PackIndex.MutableEntry> {
case 2:
return new PackIndexV2(fd);
default:
throw new IOException(MessageFormat.format(JGitText.get().unsupportedPackIndexVersion, v));
throw new IOException(MessageFormat.format(
JGitText.get().unsupportedPackIndexVersion,
Integer.valueOf(v)));
}
}
return new PackIndexV1(fd, hdr);

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackIndexWriter.java View File

@@ -137,7 +137,8 @@ public abstract class PackIndexWriter {
return new PackIndexWriterV2(dst);
default:
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().unsupportedPackIndexVersion, version));
JGitText.get().unsupportedPackIndexVersion,
Integer.valueOf(version)));
}
}


+ 8
- 6
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/PackReverseIndex.java View File

@@ -169,9 +169,10 @@ public class PackReverseIndex {
if (offset <= Integer.MAX_VALUE) {
final int i32 = Arrays.binarySearch(offsets32, (int) offset);
if (i32 < 0)
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().cantFindObjectInReversePackIndexForTheSpecifiedOffset
, offset));
throw new CorruptObjectException(
MessageFormat.format(
JGitText.get().cantFindObjectInReversePackIndexForTheSpecifiedOffset,
Long.valueOf(offset)));

if (i32 + 1 == offsets32.length) {
if (offsets64.length > 0)
@@ -182,9 +183,10 @@ public class PackReverseIndex {
} else {
final int i64 = Arrays.binarySearch(offsets64, offset);
if (i64 < 0)
throw new CorruptObjectException(MessageFormat.format(
JGitText.get().cantFindObjectInReversePackIndexForTheSpecifiedOffset
, offset));
throw new CorruptObjectException(
MessageFormat.format(
JGitText.get().cantFindObjectInReversePackIndexForTheSpecifiedOffset,
Long.valueOf(offset)));

if (i64 + 1 == offsets64.length)
return maxOffset;

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackWriter.java View File

@@ -2185,8 +2185,8 @@ public class PackWriter {
/** @return formatted message string for display to clients. */
public String getMessage() {
return MessageFormat.format(JGitText.get().packWriterStatistics, //
totalObjects, totalDeltas, //
reusedObjects, reusedDeltas);
Long.valueOf(totalObjects), Long.valueOf(totalDeltas), //
Long.valueOf(reusedObjects), Long.valueOf(reusedDeltas));
}
}


+ 7
- 4
org.eclipse.jgit/src/org/eclipse/jgit/transport/AmazonS3.java View File

@@ -510,8 +510,10 @@ public class AmazonS3 {

private IOException error(final String action, final String key,
final HttpURLConnection c) throws IOException {
final IOException err = new IOException(MessageFormat.format(JGitText.get().amazonS3ActionFailed
, action, key, HttpSupport.response(c), c.getResponseMessage()));
final IOException err = new IOException(MessageFormat.format(
JGitText.get().amazonS3ActionFailed, action, key,
Integer.valueOf(HttpSupport.response(c)),
c.getResponseMessage()));
final InputStream errorStream = c.getErrorStream();
if (errorStream == null)
return err;
@@ -532,8 +534,9 @@ public class AmazonS3 {
}

private IOException maxAttempts(final String action, final String key) {
return new IOException(MessageFormat.format(JGitText.get().amazonS3ActionFailedGivingUp
, action, key, maxAttempts));
return new IOException(MessageFormat.format(
JGitText.get().amazonS3ActionFailedGivingUp, action, key,
Integer.valueOf(maxAttempts)));
}

private HttpURLConnection open(final String method, final String bucket,

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackPushConnection.java View File

@@ -181,7 +181,9 @@ public abstract class BasePackPushConnection extends BasePackConnection implemen
//
int b = in.read();
if (0 <= b)
throw new TransportException(uri, MessageFormat.format(JGitText.get().expectedEOFReceived, (char) b));
throw new TransportException(uri, MessageFormat.format(
JGitText.get().expectedEOFReceived,
Character.valueOf((char) b)));
}
}
} catch (TransportException e) {

+ 23
- 17
org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java View File

@@ -506,17 +506,17 @@ public abstract class PackParser {
resolveDeltas(resolving);
if (entryCount < objectCount) {
if (!isAllowThin()) {
throw new IOException(MessageFormat.format(JGitText
.get().packHasUnresolvedDeltas,
(objectCount - entryCount)));
throw new IOException(MessageFormat.format(
JGitText.get().packHasUnresolvedDeltas,
Long.valueOf(objectCount - entryCount)));
}

resolveDeltasWithExternalBases(resolving);

if (entryCount < objectCount) {
throw new IOException(MessageFormat.format(JGitText
.get().packHasUnresolvedDeltas,
(objectCount - entryCount)));
throw new IOException(MessageFormat.format(
JGitText.get().packHasUnresolvedDeltas,
Long.valueOf(objectCount - entryCount)));
}
}
resolving.endTask();
@@ -573,13 +573,14 @@ public abstract class PackParser {
break;
default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, info.type));
JGitText.get().unknownObjectType,
Integer.valueOf(info.type)));
}

if (!checkCRC(oe.getCRC())) {
throw new IOException(MessageFormat.format(
JGitText.get().corruptionDetectedReReadingAt, oe
.getOffset()));
JGitText.get().corruptionDetectedReReadingAt,
Long.valueOf(oe.getOffset())));
}

resolveDeltas(visit.next(), info.type, info, progress);
@@ -598,7 +599,8 @@ public abstract class PackParser {

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, info.type));
JGitText.get().unknownObjectType,
Integer.valueOf(info.type)));
}

byte[] delta = inflateAndReturn(Source.DATABASE, info.size);
@@ -610,7 +612,7 @@ public abstract class PackParser {
if (!checkCRC(visit.delta.crc))
throw new IOException(MessageFormat.format(
JGitText.get().corruptionDetectedReReadingAt,
visit.delta.position));
Long.valueOf(visit.delta.position)));

objectDigest.update(Constants.encodedTypeString(type));
objectDigest.update((byte) ' ');
@@ -649,7 +651,8 @@ public abstract class PackParser {

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, typeCode));
JGitText.get().unknownObjectType,
Integer.valueOf(typeCode)));
}
}

@@ -713,7 +716,8 @@ public abstract class PackParser {

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, info.type));
JGitText.get().unknownObjectType,
Integer.valueOf(info.type)));
}
return info;
}
@@ -831,7 +835,7 @@ public abstract class PackParser {
final long vers = NB.decodeUInt32(buf, p + 4);
if (vers != 2 && vers != 3)
throw new IOException(MessageFormat.format(
JGitText.get().unsupportedPackVersion, vers));
JGitText.get().unsupportedPackVersion, Long.valueOf(vers)));
objectCount = NB.decodeUInt32(buf, p + 8);
use(hdrln);

@@ -952,8 +956,9 @@ public abstract class PackParser {
}

default:
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, typeCode));
throw new IOException(
MessageFormat.format(JGitText.get().unknownObjectType,
Integer.valueOf(typeCode)));
}
}

@@ -1038,7 +1043,8 @@ public abstract class PackParser {

if (info.type != Constants.OBJ_BLOB)
throw new IOException(MessageFormat.format(
JGitText.get().unknownObjectType, info.type));
JGitText.get().unknownObjectType,
Integer.valueOf(info.type)));

ObjectStream cur = readCurs.open(obj, info.type).openStream();
try {

+ 3
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java View File

@@ -172,7 +172,9 @@ class SideBandInputStream extends InputStream {
eof = true;
throw new TransportException(PFX_REMOTE + readString(available));
default:
throw new PackProtocolException(MessageFormat.format(JGitText.get().invalidChannel, channel));
throw new PackProtocolException(
MessageFormat.format(JGitText.get().invalidChannel,
Integer.valueOf(channel)));
}
}
}

+ 9
- 3
org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandOutputStream.java View File

@@ -102,11 +102,17 @@ public class SideBandOutputStream extends OutputStream {
*/
public SideBandOutputStream(final int chan, final int sz, final OutputStream os) {
if (chan <= 0 || chan > 255)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().channelMustBeInRange0_255, chan));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().channelMustBeInRange0_255,
Integer.valueOf(chan)));
if (sz <= HDR_SIZE)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().packetSizeMustBeAtLeast, sz, HDR_SIZE));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().packetSizeMustBeAtLeast,
Integer.valueOf(sz), Integer.valueOf(HDR_SIZE)));
else if (MAX_BUF < sz)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().packetSizeMustBeAtMost, sz, MAX_BUF));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().packetSizeMustBeAtMost, Integer.valueOf(sz),
Integer.valueOf(MAX_BUF)));

out = os;
buffer = new byte[sz];

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportHttp.java View File

@@ -344,7 +344,8 @@ public class TransportHttp extends HttpTransport implements WalkTransport,

default:
throw new TransportException(uri, MessageFormat.format(
JGitText.get().cannotReadHEAD, status, conn.getResponseMessage()));
JGitText.get().cannotReadHEAD, Integer.valueOf(status),
conn.getResponseMessage()));
}
}


+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/TransportSftp.java View File

@@ -242,7 +242,7 @@ public class TransportSftp extends SshTransport implements WalkTransport {
if (!files.containsKey(in))
continue;

mtimes.put(n, ent.getAttrs().getMTime());
mtimes.put(n, Integer.valueOf(ent.getAttrs().getMTime()));
packs.add(n);
}


+ 4
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/WalkFetchConnection.java View File

@@ -638,8 +638,10 @@ class WalkFetchConnection extends BaseFetchConnection {

ObjectId act = inserter.insert(type, raw);
if (!AnyObjectId.equals(id, act)) {
throw new TransportException(MessageFormat.format(JGitText.get().incorrectHashFor
, id.name(), act.name(), Constants.typeString(type), compressed.length));
throw new TransportException(MessageFormat.format(
JGitText.get().incorrectHashFor, id.name(), act.name(),
Constants.typeString(type),
Integer.valueOf(compressed.length)));
}
inserter.flush();
}

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/util/Base64.java View File

@@ -284,8 +284,8 @@ public class Base64 {

} else if (sbiDecode != WHITE_SPACE_DEC)
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().badBase64InputCharacterAt, i,
source[i] & 0xff));
JGitText.get().badBase64InputCharacterAt,
Integer.valueOf(i), Integer.valueOf(source[i] & 0xff)));
}

if (outBuff.length == outBuffPosn)

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/io/InterruptTimer.java View File

@@ -117,7 +117,8 @@ public final class InterruptTimer {
*/
public void begin(final int timeout) {
if (timeout <= 0)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidTimeout, timeout));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidTimeout, Integer.valueOf(timeout)));
Thread.interrupted();
state.begin(timeout);
}

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutInputStream.java View File

@@ -83,7 +83,8 @@ public class TimeoutInputStream extends FilterInputStream {
*/
public void setTimeout(final int millis) {
if (millis < 0)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidTimeout, millis));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidTimeout, Integer.valueOf(millis)));
timeout = millis;
}


+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutOutputStream.java View File

@@ -84,7 +84,8 @@ public class TimeoutOutputStream extends OutputStream {
*/
public void setTimeout(final int millis) {
if (millis < 0)
throw new IllegalArgumentException(MessageFormat.format(JGitText.get().invalidTimeout, millis));
throw new IllegalArgumentException(MessageFormat.format(
JGitText.get().invalidTimeout, Integer.valueOf(millis)));
timeout = millis;
}


Loading…
Cancel
Save