@@ -80,7 +80,7 @@ private static OutputStreamWriter createWriter(OutputStream outputStream) {
80
80
requireNonNull (outputStream ),
81
81
StandardCharsets .UTF_8 );
82
82
}
83
-
83
+
84
84
private static String readTemplate () {
85
85
try {
86
86
ByteArrayOutputStream baos = new ByteArrayOutputStream ();
@@ -93,6 +93,7 @@ private static String readTemplate() {
93
93
throw new RuntimeException ("Could not read resource index.mustache.html" , e );
94
94
}
95
95
}
96
+
96
97
private static InputStream createInputStream (String text ) {
97
98
return new ByteArrayInputStream (text .getBytes (UTF_8 ));
98
99
}
@@ -237,7 +238,7 @@ public interface Serializer {
237
238
public static Builder builder (Serializer serializer ) {
238
239
return new Builder (serializer );
239
240
}
240
-
241
+
241
242
public static final class Builder {
242
243
private final Serializer serializer ;
243
244
private Supplier <InputStream > title = () -> createInputStream ("Cucumber" );
@@ -311,7 +312,7 @@ public Builder css(Supplier<InputStream> css) {
311
312
*
312
313
* @param customCss a supplier for the custom css.
313
314
* @return this builder
314
- * @see <a href=https://github.com/cucumber/react-components?tab=readme-ov-file#styling>Cucumber - React Components - Styling</a>
315
+ * @see <a href=" https://github.com/cucumber/react-components?tab=readme-ov-file#styling" >Cucumber - React Components - Styling</a>
315
316
*/
316
317
public Builder customCss (Supplier <InputStream > customCss ) {
317
318
this .customCss = requireNonNull (customCss );
@@ -322,7 +323,7 @@ public Builder customCss(Supplier<InputStream> customCss) {
322
323
* Replaces default script for the report.
323
324
* <p>
324
325
* The default script renders the cucumber messages into a report.
325
- * Unless you are building your own html report you should use
326
+ * Unless you are building yourMessagesToHtmlWriter own html report you should use
326
327
* {@link #customScript(Supplier)} instead.
327
328
*
328
329
* @param script a supplier for the default script.
0 commit comments