Remove useless null warning

This commit is contained in:
Connor Tumbleson 2017-11-29 07:56:24 -05:00
parent ee2b7206f1
commit 3264f142cb
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75

View File

@ -296,7 +296,6 @@ public class StringBlock {
return (m_isUTF8 ? UTF8_DECODER : UTF16LE_DECODER).decode(
ByteBuffer.wrap(m_strings, offset, length)).toString();
} catch (CharacterCodingException ex) {
LOGGER.log(Level.WARNING, null, ex);
return null;
}
}