Skip to content

Commit

Permalink
remove some unimplemented methods
Browse files Browse the repository at this point in the history
  • Loading branch information
xd009642 committed Jan 1, 2025
1 parent 37b4504 commit c493bc1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/report/cobertura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,8 @@ fn render_class(config: &Config, traces: &TraceMap, file: &Path) -> Option<Class
}
}

/// So I don't currently export out methods for cobertura. This may change in future easily enough
/// though so leaving the type here as a potential stub.
#[derive(Debug)]
struct Method {
name: String,
Expand All @@ -371,14 +373,6 @@ struct Method {
lines: Vec<Line>,
}

fn render_methods() -> Vec<Method> {
unimplemented!()
}

fn render_method() -> Method {
unimplemented!()
}

#[derive(Debug)]
enum Line {
Plain {
Expand Down

0 comments on commit c493bc1

Please sign in to comment.