Skip to content

Commit

Permalink
Removed redundant empty array
Browse files Browse the repository at this point in the history
  • Loading branch information
jhy committed Feb 3, 2011
1 parent 8c112c7 commit 765eafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/parser/Tag.java
Expand Up @@ -249,7 +249,7 @@ public String toString() {
// TODO[must]: incorporate html 5 as appropriate

// document
createBlock("HTML").setAncestor(new String[0]); // specific includes not impl
createBlock("HTML").setAncestor(); // specific includes not impl
createBlock("HEAD").setParent("HTML").setLimitChildren();
createBlock("BODY").setAncestor("HTML"); // specific includes not impl
createBlock("FRAMESET").setAncestor("HTML");
Expand Down

0 comments on commit 765eafc

Please sign in to comment.