@@ -271,20 +271,20 @@ public String inject(
271
271
272
272
if (isReport ) {
273
273
Color colorReport = UIManager .getColor ("TextArea.inactiveForeground" );
274
- String report = "<br>" + StringUtil .formatReport (colorReport , "Method: " ) + httpRequest .method ();
275
- report += "<br>" + StringUtil .formatReport (colorReport , "Path: " ) + httpRequest .uri ().getPath ();
274
+ String report = "<br> " + StringUtil .formatReport (colorReport , "Method: " ) + httpRequest .method ();
275
+ report += "<br> " + StringUtil .formatReport (colorReport , "Path: " ) + httpRequest .uri ().getPath ();
276
276
if (httpRequest .uri ().getQuery () != null ) {
277
- report += "<br>" + StringUtil .formatReport (colorReport , "Query: " ) + httpRequest .uri ().getQuery ();
277
+ report += "<br> " + StringUtil .formatReport (colorReport , "Query: " ) + httpRequest .uri ().getQuery ();
278
278
}
279
279
if (
280
280
!(this .mediatorUtils .getParameterUtil ().getListRequest ().isEmpty ()
281
281
&& this .mediatorUtils .getCsrfUtil ().getTokenCsrf () == null )
282
282
) {
283
- report += "<br>" + StringUtil .formatReport (colorReport , "Body: " ) + body ;
283
+ report += "<br> " + StringUtil .formatReport (colorReport , "Body: " ) + body ;
284
284
}
285
- report += "<br>" + StringUtil .formatReport (colorReport , "Header: " ) + httpRequest .headers ().map ().entrySet ().stream ()
285
+ report += "<br> " + StringUtil .formatReport (colorReport , "Header: " ) + httpRequest .headers ().map ().entrySet ().stream ()
286
286
.map (entry -> String .format ("%s: %s" , entry .getKey (), String .join (StringUtils .EMPTY , entry .getValue ())))
287
- .collect (Collectors .joining ("<br>" ));
287
+ .collect (Collectors .joining ("<br> " ));
288
288
return report ;
289
289
}
290
290
@@ -702,6 +702,6 @@ public void appendAnalysisReport(String analysisReport) {
702
702
}
703
703
704
704
public void appendAnalysisReport (String analysisReport , boolean isInit ) {
705
- this .analysisReport += (isInit ? StringUtils .EMPTY : "<br><br>" ) + analysisReport ;
705
+ this .analysisReport += (isInit ? StringUtils .EMPTY : "<br> <br> " ) + analysisReport ;
706
706
}
707
707
}
0 commit comments