ok/jj
1
0
Fork 0
forked from mirrors/jj

repo_path: qualify fmt::Error, use fmt::Result for short

"Error" is super common type name, so I think better to not pollute the
namespace with a very specific Error type.
This commit is contained in:
Yuya Nishihara 2024-04-06 00:37:52 +09:00
parent 93cebcd0c0
commit 0b833ea9c0

View file

@ -16,7 +16,7 @@
use std::borrow::Borrow; use std::borrow::Borrow;
use std::cmp::Ordering; use std::cmp::Ordering;
use std::fmt::{Debug, Error, Formatter}; use std::fmt::{self, Debug, Formatter};
use std::iter::FusedIterator; use std::iter::FusedIterator;
use std::ops::Deref; use std::ops::Deref;
use std::path::{Component, Path, PathBuf}; use std::path::{Component, Path, PathBuf};
@ -172,13 +172,13 @@ pub struct RepoPath {
} }
impl Debug for RepoPath { impl Debug for RepoPath {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
f.write_fmt(format_args!("{:?}", &self.value)) f.write_fmt(format_args!("{:?}", &self.value))
} }
} }
impl Debug for RepoPathBuf { impl Debug for RepoPathBuf {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
<RepoPath as Debug>::fmt(self, f) <RepoPath as Debug>::fmt(self, f)
} }
} }