Skip to content

Commit

Permalink
Actually resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
hns committed Aug 7, 2024
1 parent 1669944 commit ffd4ecc
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,7 @@ protected void buildClassTree(Content classContent) {
* @param target the content to which the documentation will be added
*/
protected void buildClassInfo(Content target) {
<<<<<<< HEAD
var c = new ContentBuilder();
=======
Content c = HtmlTree.DIV(HtmlStyles.horizontalScroll);
>>>>>>> master
buildParamInfo(c);
buildSuperInterfacesInfo(c);
buildImplementedInterfacesInfo(c);
Expand All @@ -169,8 +165,8 @@ protected void buildClassInfo(Content target) {
buildInterfaceUsageInfo(c);
buildNestedClassInfo(c);
buildFunctionalInterfaceInfo(c);
c.add(new HtmlTree(TagName.HR));
var div = HtmlTree.DIV(HtmlStyle.horizontalScroll);
c.add(new HtmlTree(HtmlTag.HR));
var div = HtmlTree.DIV(HtmlStyles.horizontalScroll);
buildClassSignature(div);
buildDeprecationInfo(div);
buildClassDescription(div);
Expand Down Expand Up @@ -506,10 +502,6 @@ public TypeElement getCurrentPageElement() {
}

protected void addClassSignature(Content classInfo) {
<<<<<<< HEAD
=======
classInfo.add(new HtmlTree(HtmlTag.HR));
>>>>>>> master
classInfo.add(new Signatures.TypeSignature(typeElement, this)
.toContent());
}
Expand Down

0 comments on commit ffd4ecc

Please sign in to comment.