Skip to content

Commit 38fec07

Browse files
committed
Removed unused
Was previously used in the HTML pretty printer
1 parent 46ec1a1 commit 38fec07

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/main/java/org/jsoup/nodes/Node.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -806,16 +806,6 @@ public Range sourceRange() {
806806
return Range.of(this, true);
807807
}
808808

809-
/** Test if this node is the first child, or first following blank text. */
810-
final boolean isEffectivelyFirst() {
811-
if (siblingIndex == 0) return true;
812-
if (siblingIndex == 1) {
813-
final Node prev = previousSibling();
814-
return prev instanceof TextNode && (((TextNode) prev).isBlank());
815-
}
816-
return false;
817-
}
818-
819809
/**
820810
* Gets this node's outer HTML.
821811
* @return outer HTML.

0 commit comments

Comments
 (0)