From f8cd392a11f7e0d1cdd4d026f33dd07e37d63220 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 5 Sep 2016 08:52:34 +0200 Subject: [PATCH] BUG-5410: fixup javadocs With the package being moved, full path of exceptions has changed. Use imported name instead. Change-Id: I09fb4f0a9f5a31426b65b489da999b5f3d7c4cde Signed-off-by: Robert Varga --- .../opendaylight/yangtools/xsd/regex/RegularExpression.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 17bc1d6be1..d87125077b 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 @@ -2290,7 +2290,7 @@ public class RegularExpression implements java.io.Serializable { * Creates a new RegularExpression instance. * * @param regex A regular expression - * @exception org.apache.xerces.utils.regex.ParseException regex is not conforming to the syntax. + * @exception ParseException regex is not conforming to the syntax. */ public RegularExpression(String regex) throws ParseException { this(regex, null); @@ -2301,7 +2301,7 @@ public class RegularExpression implements java.io.Serializable { * * @param regex A regular expression * @param options A String consisted of "i" "m" "s" "u" "w" "," "X" - * @exception org.apache.xerces.utils.regex.ParseException regex is not conforming to the syntax. + * @exception ParseException regex is not conforming to the syntax. */ public RegularExpression(String regex, String options) throws ParseException { this.setPattern(regex, options); @@ -2312,7 +2312,7 @@ public class RegularExpression implements java.io.Serializable { * * @param regex A regular expression * @param options A String consisted of "i" "m" "s" "u" "w" "," "X" - * @exception org.apache.xerces.utils.regex.ParseException regex is not conforming to the syntax. + * @exception ParseException regex is not conforming to the syntax. */ public RegularExpression(String regex, String options, Locale locale) throws ParseException { this.setPattern(regex, options, locale); -- 2.36.6