Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bomgar committed Aug 1, 2023
1 parent 3f94cec commit 2265ced
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl Config {

fn resolve_workspace(&self, project: &Project) -> String {
let mut x = self.resolve_from_tags(|tag| tag.workspace.clone(), project.tags.clone());

x.pop().unwrap_or_else(|| self.settings.workspace.clone())
}
pub fn resolve_after_clone(&self, project: &Project) -> Vec<String> {
Expand Down
1 change: 0 additions & 1 deletion src/errors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ impl fmt::Display for AppError {
}

impl Error for AppError {

fn cause(&self) -> Option<&dyn Error> {
match *self {
AppError::Io(ref err) => Some(err),
Expand Down
1 change: 0 additions & 1 deletion src/git/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ pub fn update_project_remotes(project: &Project, path: &Path, ff_merge: bool) ->
if ff_merge {
// error does not matter. fast forward not possible
let _ = fast_forward_merge(&local);

}

Ok(())
Expand Down

0 comments on commit 2265ced

Please sign in to comment.