Skip to content

Commit

Permalink
remove redundant modifiers (support recent checkstyle versions) (closes
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar authored and PascalSchumacher committed Sep 8, 2017
1 parent cc94767 commit d6ad3f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static <T extends Serializable> T clone(final T object) {
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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit d6ad3f0

Please sign in to comment.