Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a287bfea authored by Tobias Thierer's avatar Tobias Thierer
Browse files

Track dropping of throws clause in Pattern.java.

This is not really an API change because PatternSyntaxException
is unchecked (extends RuntimeException). The behavior has not
changed (PatternSyntaxException can still be thrown).

Bug: 109659282
Test: Treehugger
Change-Id: I5759eee10b27307b68f15fdd6f6f1a258ee01529
parent 3e76c04c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68724,7 +68724,7 @@ package java.util.regex {
  public final class Pattern implements java.io.Serializable {
    method public java.util.function.Predicate<java.lang.String> asPredicate();
    method public static java.util.regex.Pattern compile(java.lang.String);
    method public static java.util.regex.Pattern compile(java.lang.String, int) throws java.util.regex.PatternSyntaxException;
    method public static java.util.regex.Pattern compile(java.lang.String, int);
    method public int flags();
    method public java.util.regex.Matcher matcher(java.lang.CharSequence);
    method public static boolean matches(java.lang.String, java.lang.CharSequence);