Skip to content

Commit

Permalink
feat(#3742): ErrorDirectives -> DrErrors
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Dec 24, 2024
1 parent 02f86f7 commit 3bf80e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Error directives.
* @since 0.50
*/
final class ErrorDirectives implements Iterable<Directive> {
final class DrErrors implements Iterable<Directive> {

/**
* Errors accumulated.
Expand All @@ -45,7 +45,7 @@ final class ErrorDirectives implements Iterable<Directive> {
* Ctor.
* @param errors The errors.
*/
ErrorDirectives(final List<ParsingException> errors) {
DrErrors(final List<ParsingException> errors) {
this.errors = errors;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public int size() {

@Override
public Iterator<Directive> iterator() {
return new ErrorDirectives(this.errors).iterator();
return new DrErrors(this.errors).iterator();
}

// @checkstyle ParameterNumberCheck (10 lines)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void syntaxError(

@Override
public Iterator<Directive> iterator() {
return new ErrorDirectives(this.errors).iterator();
return new DrErrors(this.errors).iterator();
}

/**
Expand Down

0 comments on commit 3bf80e0

Please sign in to comment.