Skip to content

Commit

Permalink
Dropped language level requirement to 1.6
Browse files Browse the repository at this point in the history
 - Ran all tests; looks good
 - Travis shouldn't complain
  • Loading branch information
ndm13 committed May 19, 2017
1 parent 75d57b1 commit ee7885d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/com/mifmif/common/regex/GenerexIterator.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ public String next() {
return stringBuilder.toString();
}

/**
* Always throws an {@link UnsupportedOperationException} (default behavior for Java 8).
*/
public void remove() {
throw new UnsupportedOperationException("remove");
}

/**
* A step, in the iteration process, to build a string using {@code State}s.
* <p>
Expand Down

0 comments on commit ee7885d

Please sign in to comment.