Skip to content

Commit

Permalink
Make private class final
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 5, 2023
1 parent aea25ad commit b5b6f59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class NodeCreateRule
/**
* The SAX content handler that does all the actual work of assembling the DOM node tree from the SAX events.
*/
private class NodeBuilder
private final class NodeBuilder
extends DefaultHandler
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public class SetNestedPropertiesRule
extends Rule
{

private class AnyChildRule
private final class AnyChildRule
extends Rule
{

Expand Down Expand Up @@ -202,7 +202,7 @@ public void end( final String namespace, final String name )
}

/** Private Rules implementation */
private class AnyChildRules
private final class AnyChildRules
implements Rules
{
private String matchPrefix;
Expand Down

0 comments on commit b5b6f59

Please sign in to comment.