Merge "Silence false potential null pointer access warnings"

This commit is contained in:
Shawn Pearce 2015-05-28 15:37:09 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 5426ba2778
1 changed files with 2 additions and 0 deletions

View File

@ -533,6 +533,7 @@ private ByteBuffer newCopyBuffer(PackOutputStream out, ReadableChannel rc) {
return ByteBuffer.wrap(copyBuf, 0, bs);
}
@SuppressWarnings("null")
void copyAsIs(PackOutputStream out, DfsObjectToPack src,
boolean validate, DfsReader ctx) throws IOException,
StoredObjectRepresentationNotAvailableException {
@ -836,6 +837,7 @@ private static int read(ReadableChannel rc, ByteBuffer buf)
return buf.position();
}
@SuppressWarnings("null")
ObjectLoader load(DfsReader ctx, long pos)
throws IOException {
try {