Skip to content

Commit

Permalink
Remove extra throws clause
Browse files Browse the repository at this point in the history
  • Loading branch information
kokosing committed Nov 24, 2022
1 parent 0d9981e commit 1ebf461
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class TestAllowAllAccessControl
{
@Test
public void testEverythingImplemented()
throws NoSuchMethodException
{
assertAllMethodsOverridden(ConnectorAccessControl.class, AllowAllAccessControl.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class TestAllowAllSystemAccessControl
{
@Test
public void testEverythingImplemented()
throws ReflectiveOperationException
{
assertAllMethodsOverridden(SystemAccessControl.class, AllowAllSystemAccessControl.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class TestLegacyAccessControl
{
@Test
public void testEverythingImplemented()
throws NoSuchMethodException
{
assertAllMethodsOverridden(ConnectorAccessControl.class, LegacyAccessControl.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class TestSqlStandardAccessControl
{
@Test
public void testEverythingImplemented()
throws NoSuchMethodException
{
assertAllMethodsOverridden(ConnectorAccessControl.class, SqlStandardAccessControl.class);
}
Expand Down

0 comments on commit 1ebf461

Please sign in to comment.