Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Commit

Permalink
allow dead code to fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcAntoine-Arnaud committed Dec 27, 2019
1 parent 77ef71f commit d9528fb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/process_return.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ impl ProcessReturn {
1
}

#[allow(dead_code)]
pub fn get_code(&self) -> i32 {
self.code
}

#[allow(dead_code)]
pub fn get_message(&self) -> &String {
&self.message
}

#[allow(dead_code)]
pub fn get_output_paths(&self) -> &Vec<String> {
&self.output_paths
}
Expand Down

0 comments on commit d9528fb

Please sign in to comment.