Compare commits
2 commits
656ec4a534
...
1bf9f6a516
Author | SHA1 | Date | |
---|---|---|---|
1bf9f6a516 | |||
3670979b3c |
1 changed files with 3 additions and 2 deletions
|
@ -16,9 +16,10 @@ impl TryFrom<gix::Url> for RemoteUrl {
|
|||
}
|
||||
impl RemoteUrl {
|
||||
pub fn matches(&self, other: &Self) -> bool {
|
||||
tracing::debug!(host = ?self.host, fullname = ?self.fullname, token = ?self.token, "a");
|
||||
tracing::debug!(host = ?other.host, fullname = ?other.fullname, token = ?other.token,"b");
|
||||
tracing::debug!(host = ?self.host, user = ?self.user, fullname = ?self.fullname, token = ?self.token, "a");
|
||||
tracing::debug!(host = ?other.host, user = ?other.user, fullname = ?other.fullname, token = ?other.token,"b");
|
||||
self.host.eq(&other.host)
|
||||
&& self.user.eq(&other.user)
|
||||
&& self.fullname.eq(&other.fullname)
|
||||
&& self.token.eq(&other.token)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue