Skip to content

Commit

Permalink
Make package private class final
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 5, 2023
1 parent 8e2b796 commit aea25ad
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*
* @since 1.6
*/
class LogUtils
final class LogUtils
{

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
*
*/
class WithMemoryRulesBinder
final class WithMemoryRulesBinder
implements RulesBinder
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ public void testProcessingHook()
throws Exception
{

class TestCallMethodRule
final class TestCallMethodRule
extends CallMethodRule
{
Object result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void tearDown()
public void testBasicSubstitution()
throws Exception
{
class TestSubRule
final class TestSubRule
extends Rule
{
public String body;
Expand Down Expand Up @@ -404,7 +404,7 @@ public void testOnceAndOnceOnly()
throws Exception
{

class TestConfigureDigester
final class TestConfigureDigester
extends Digester
{
public int called;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void testPropagateException()
{

// only used with this method
class ThrowExceptionCreateRule
final class ThrowExceptionCreateRule
extends AbstractObjectCreationFactory<Object>
{
@Override
Expand Down

0 comments on commit aea25ad

Please sign in to comment.