Skip to content

Commit

Permalink
#132 Make some classes package private
Browse files Browse the repository at this point in the history
  • Loading branch information
Suseika committed Aug 29, 2015
1 parent 996fa29 commit 00e3655
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @version $Id$
* @since 0.1.0
*/
public final class MissingLexemeException extends Exception {
final class MissingLexemeException extends Exception {
/**
* SerialVersionUID.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @version $Id$
* @since 0.1.0
*/
public final class MissingTemplateException extends Exception {
final class MissingTemplateException extends Exception {
/**
* SerialVersionUID.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/tendiwa/inflectible/Text.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @version $Id$
* @since 0.1.0
*/
public interface Text {
interface Text {
/**
* Returns a string representation of the text.
* @return String representation of the text.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @since 0.2.0
* @checkstyle ParameterNumberCheck (20 lines)
*/
public final class SimpleErrorListener extends BaseErrorListener {
final class SimpleErrorListener extends BaseErrorListener {
@Override
public void syntaxError(
final Recognizer<?, ?> recognizer,
Expand Down

0 comments on commit 00e3655

Please sign in to comment.