X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fxsd-regex%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fxsd%2Fregex%2FRegularExpression.java;h=5b040263ddb7983ac54db802d65a259a869637d4;hb=5cf94e667e9102a281b4eee9cf128c0a56f42469;hp=7f3a4453067ff7c113751b4b4e64a1bf34b95e38;hpb=f0819c80fde5b809edd8b0840fc463874fd3c974;p=yangtools.git diff --git a/third-party/xsd-regex/src/main/java/org/opendaylight/yangtools/xsd/regex/RegularExpression.java b/third-party/xsd-regex/src/main/java/org/opendaylight/yangtools/xsd/regex/RegularExpression.java index 7f3a445306..5b040263dd 100644 --- a/third-party/xsd-regex/src/main/java/org/opendaylight/yangtools/xsd/regex/RegularExpression.java +++ b/third-party/xsd-regex/src/main/java/org/opendaylight/yangtools/xsd/regex/RegularExpression.java @@ -666,7 +666,7 @@ public class RegularExpression implements java.io.Serializable { * @return true if the target is matched to this regular expression. */ public boolean matches(char[] target) { - return this.matches(target, 0, target .length , (Match)null); + return this.matches(target, 0, target .length , null); } /** @@ -678,7 +678,7 @@ public class RegularExpression implements java.io.Serializable { * @return true if the target is matched to this regular expression. */ public boolean matches(char[] target, int start, int end) { - return this.matches(target, start, end, (Match)null); + return this.matches(target, start, end, null); } /** @@ -856,7 +856,7 @@ public class RegularExpression implements java.io.Serializable { * @return true if the target is matched to this regular expression. */ public boolean matches(String target) { - return this.matches(target, 0, target .length() , (Match)null); + return this.matches(target, 0, target .length() , null); } /** @@ -868,7 +868,7 @@ public class RegularExpression implements java.io.Serializable { * @return true if the target is matched to this regular expression. */ public boolean matches(String target, int start, int end) { - return this.matches(target, start, end, (Match)null); + return this.matches(target, start, end, null); } /** @@ -1585,7 +1585,7 @@ public class RegularExpression implements java.io.Serializable { * @return true if the target is matched to this regular expression. */ public boolean matches(CharacterIterator target) { - return this.matches(target, (Match)null); + return this.matches(target, null); }