File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ fn iterate_without_lines<'a>(
523523}
524524
525525fn extract_class_name ( full_path : & str ) -> Option < & str > {
526- let after_last_period = full_path. split ( '.' ) . last ( ) ?;
526+ let after_last_period = full_path. split ( '.' ) . next_back ( ) ?;
527527 // If the class is an inner class, we need to extract the outer class name
528528 after_last_period. split ( '$' ) . next ( )
529529}
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ impl<'m> Iterator for RemappedFrameIter<'m> {
109109}
110110
111111fn extract_class_name ( full_path : & str ) -> Option < & str > {
112- let after_last_period = full_path. split ( '.' ) . last ( ) ?;
112+ let after_last_period = full_path. split ( '.' ) . next_back ( ) ?;
113113 // If the class is an inner class, we need to extract the outer class name
114114 after_last_period. split ( '$' ) . next ( )
115115}
You can’t perform that action at this time.
0 commit comments