Skip to content

Commit 28b2757

Browse files
committed
javadoc
1 parent e3e7853 commit 28b2757

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/com/gargoylesoftware/css/parser/CSSParseException.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public class CSSParseException extends CSSException {
3535
* @param message The error or warning message.
3636
* @param locator The locator object for the error or warning.
3737
* @see Locator
38-
* @see CSSParser#setLocale
3938
*/
4039
public CSSParseException(final String message, final Locator locator) {
4140
this(message, locator, null);
@@ -55,7 +54,6 @@ public CSSParseException(final String message, final Locator locator) {
5554
* @param locator The locator object for the error or warning.
5655
* @param e Any exception
5756
* @see Locator
58-
* @see CSSParser#setLocale
5957
*/
6058
public CSSParseException(final String message, final Locator locator, final Exception e) {
6159
this(message, locator.getUri(), locator.getLineNumber(), locator.getColumnNumber(), e);
@@ -74,7 +72,6 @@ public CSSParseException(final String message, final Locator locator, final Exce
7472
* caused the error or warning.
7573
* @param columnNumber The column number of the end of the text that
7674
* cause the error or warning.
77-
* @see CSSParser#setLocale
7875
*/
7976
public CSSParseException(final String message, final String uri, final int lineNumber, final int columnNumber) {
8077
this(message, uri, lineNumber, columnNumber, null);
@@ -99,7 +96,6 @@ public CSSParseException(final String message, final String uri, final int lineN
9996
* @param columnNumber The column number of the end of the text that
10097
* cause the error or warning.
10198
* @param e Another exception to embed in this one.
102-
* @see CSSParser#setLocale
10399
*/
104100
public CSSParseException(final String message, final String uri,
105101
final int lineNumber, final int columnNumber, final Exception e) {
@@ -116,7 +112,6 @@ public CSSParseException(final String message, final String uri,
116112
*
117113
* @return A string containing the URI, or null
118114
* if none is available.
119-
* @see Locator#getURI
120115
*/
121116
public String getURI() {
122117
return uri_;

0 commit comments

Comments
 (0)