You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reporter.warning(null, "Doclets should be created with the Reporter constructor, otherwise logging reporters will not be shared by the creating parent")
new html.HtmlFactory(universe, newScalaDocReporter(universe.settings)).generate()
18
-
}
17
+
@deprecated("Doclets should be created with the Reporter constructor. Otherwise logging reporters will not be shared by the creating parent", "2.12.0")
18
+
defthis() =this(null)
19
19
20
+
defgenerateImpl() =
21
+
new html.HtmlFactory(
22
+
universe,
23
+
if (reporter !=null) reporter elsenewScalaDocReporter(universe.settings)
s"doc-version ($version) is too long to be displayed in the webview")
164
+
docletReporter.summaryWarning(s"doc-version ($version) was too long to be displayed in the webview, and will be left out. The max length is: XX.XX.XX-XXX")
163
165
""
164
166
} else version
165
167
}
@@ -1124,12 +1126,12 @@ object EntityPage {
1124
1126
uni: doc.Universe,
1125
1127
gen: DiagramGenerator,
1126
1128
docTpl: DocTemplateEntity,
1127
-
rep: ScalaDocReporter
1129
+
rep: Reporter
1128
1130
):EntityPage=newEntityPage {
1129
1131
defuniverse= uni
1130
1132
defgenerator= gen
1131
1133
deftpl= docTpl
1132
-
defreporter= rep
1134
+
defdocletReporter= rep
1133
1135
}
1134
1136
1135
1137
/* Vlad: Lesson learned the hard way: don't put any stateful code that references the model here,
0 commit comments