Skip to content

Commit

Permalink
Checkstyle fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeb01 committed Apr 28, 2020
1 parent 24b7bd1 commit cd334e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,13 +347,13 @@ public void shouldRejectOversizeKeys()
manager.setCounterKey(counter.id(), tempBuffer, 0, MAX_KEY_LENGTH + 1);
fail("Should have thrown exception");
}
catch (IllegalArgumentException e)
catch (final IllegalArgumentException e)
{
assertTrue(true);
}
}

private static class StringKeyExtractor implements MetaData
private static final class StringKeyExtractor implements MetaData
{
private final int id;
private String key;
Expand Down

0 comments on commit cd334e5

Please sign in to comment.