20
20
//! 152 | | return "test";
21
21
//! 153 | | }
22
22
//! | |___^ error: expected `String`, for `&str`.
23
- //! |
24
23
//! ```
25
24
//!
26
25
//! The first two lines of the example above are `Raw` lines, while the rest
@@ -325,7 +324,7 @@ impl DisplaySet<'_> {
325
324
}
326
325
327
326
let text = normalize_whitespace ( text) ;
328
- let line_len = text. as_bytes ( ) . len ( ) ;
327
+ let line_len = text. len ( ) ;
329
328
let left = self . margin . left ( line_len) ;
330
329
let right = self . margin . right ( line_len) ;
331
330
@@ -1013,7 +1012,6 @@ fn format_message(
1013
1012
sets. push ( format_snippet (
1014
1013
snippet,
1015
1014
idx == 0 ,
1016
- !footer. is_empty ( ) ,
1017
1015
term_width,
1018
1016
anonymized_line_numbers,
1019
1017
) ) ;
@@ -1092,7 +1090,6 @@ fn format_label(
1092
1090
fn format_snippet (
1093
1091
snippet : snippet:: Snippet < ' _ > ,
1094
1092
is_first : bool ,
1095
- has_footer : bool ,
1096
1093
term_width : usize ,
1097
1094
anonymized_line_numbers : bool ,
1098
1095
) -> DisplaySet < ' _ > {
@@ -1102,7 +1099,6 @@ fn format_snippet(
1102
1099
let mut body = format_body (
1103
1100
snippet,
1104
1101
need_empty_header,
1105
- has_footer,
1106
1102
term_width,
1107
1103
anonymized_line_numbers,
1108
1104
) ;
@@ -1290,7 +1286,6 @@ fn fold_body(body: Vec<DisplayLine<'_>>) -> Vec<DisplayLine<'_>> {
1290
1286
fn format_body (
1291
1287
snippet : snippet:: Snippet < ' _ > ,
1292
1288
need_empty_header : bool ,
1293
- has_footer : bool ,
1294
1289
term_width : usize ,
1295
1290
anonymized_line_numbers : bool ,
1296
1291
) -> DisplaySet < ' _ > {
@@ -1605,21 +1600,6 @@ fn format_body(
1605
1600
) ;
1606
1601
}
1607
1602
1608
- if has_footer {
1609
- body. push ( DisplayLine :: Source {
1610
- lineno : None ,
1611
- inline_marks : vec ! [ ] ,
1612
- line : DisplaySourceLine :: Empty ,
1613
- annotations : vec ! [ ] ,
1614
- } ) ;
1615
- } else if let Some ( DisplayLine :: Source { .. } ) = body. last ( ) {
1616
- body. push ( DisplayLine :: Source {
1617
- lineno : None ,
1618
- inline_marks : vec ! [ ] ,
1619
- line : DisplaySourceLine :: Empty ,
1620
- annotations : vec ! [ ] ,
1621
- } ) ;
1622
- }
1623
1603
let max_line_num_len = if anonymized_line_numbers {
1624
1604
ANONYMIZED_LINE_NUM . len ( )
1625
1605
} else {
0 commit comments