remove redundant modifiers (support recent checkstyle versions) (closes #284)

This commit is contained in:
Oliver Siegmar 2017-09-08 10:36:07 +02:00 committed by pascalschumacher
parent cc94767e7e
commit d6ad3f0157
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ public class SerializationUtils {
final byte[] objectData = serialize(object);
final ByteArrayInputStream bais = new ByteArrayInputStream(objectData);
try (final ClassLoaderAwareObjectInputStream in = new ClassLoaderAwareObjectInputStream(bais,
try (ClassLoaderAwareObjectInputStream in = new ClassLoaderAwareObjectInputStream(bais,
object.getClass().getClassLoader())) {
/*
* when we serialize and deserialize an object,

View File

@ -37,5 +37,5 @@ public interface Computable<I, O> {
* @throws InterruptedException
* thrown if the calculation is interrupted
*/
O compute(final I arg) throws InterruptedException;
O compute(I arg) throws InterruptedException;
}