File tree Expand file tree Collapse file tree 4 files changed +1
-12
lines changed Expand file tree Collapse file tree 4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,6 @@ pub(crate) trait FormatRenderer<'tcx>: Sized {
6868
6969 /// Post processing hook for cleanup and dumping output to files.
7070 fn after_krate ( self ) -> Result < ( ) , Error > ;
71-
72- fn cache ( & self ) -> & Cache ;
7371}
7472
7573fn run_format_inner < ' tcx , T : FormatRenderer < ' tcx > > (
Original file line number Diff line number Diff line change @@ -875,8 +875,4 @@ impl<'tcx> FormatRenderer<'tcx> for Context<'tcx> {
875875
876876 Ok ( ( ) )
877877 }
878-
879- fn cache ( & self ) -> & Cache {
880- & self . shared . cache
881- }
882878}
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ use rustdoc_json_types::*;
1616use thin_vec:: ThinVec ;
1717
1818use crate :: clean:: { self , ItemId } ;
19- use crate :: formats:: FormatRenderer ;
2019use crate :: formats:: item_type:: ItemType ;
2120use crate :: json:: JsonRenderer ;
2221use crate :: passes:: collect_intra_doc_links:: UrlFragment ;
@@ -41,7 +40,7 @@ impl JsonRenderer<'_> {
4140 } )
4241 . collect ( ) ;
4342 let docs = item. opt_doc_value ( ) ;
44- let attrs = item. attributes_and_repr ( self . tcx , self . cache ( ) , true ) ;
43+ let attrs = item. attributes_and_repr ( self . tcx , & self . cache , true ) ;
4544 let span = item. span ( self . tcx ) ;
4645 let visibility = item. visibility ( self . tcx ) ;
4746 let clean:: ItemInner { name, item_id, .. } = * item. inner ;
Original file line number Diff line number Diff line change @@ -377,8 +377,4 @@ impl<'tcx> FormatRenderer<'tcx> for JsonRenderer<'tcx> {
377377 self . serialize_and_write ( output_crate, BufWriter :: new ( stdout ( ) . lock ( ) ) , "<stdout>" )
378378 }
379379 }
380-
381- fn cache ( & self ) -> & Cache {
382- & self . cache
383- }
384380}
You can’t perform that action at this time.
0 commit comments