Skip to content

Commit 384e417

Browse files
committed
javadoc fixes
1 parent d9f15f7 commit 384e417

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/main/java/com/gargoylesoftware/css/dom/CSSStyleDeclarationImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public List<Property> getProperties() {
5252
}
5353

5454
/**
55-
* {@inheritDoc}
55+
* @return the current css text
5656
*/
5757
public String getCssText() {
5858
final StringBuilder sb = new StringBuilder();

src/main/java/com/gargoylesoftware/css/dom/CSSValueImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ public double getDoubleValue() throws DOMException {
402402
}
403403

404404
/**
405-
* {@inheritDoc}
405+
* @return the string value.
406+
* @throws DOMException case of error
406407
*/
407408
public String getStringValue() throws DOMException {
408409
if (value_ instanceof LexicalUnit) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public LexicalUnit getSubValues() {
287287
}
288288

289289
/**
290-
* {@inheritDoc}
290+
* @return the current css text
291291
*/
292292
public String getCssText() {
293293
if (null != toString_) {

0 commit comments

Comments
 (0)