Skip to content

Commit a3d86dd

Browse files
authored
Auto merge of #3294 - sanxiyn:unused-type-alias, r=alexcrichton
Remove unused type aliases Found by rust-lang/rust#37631 and necessary to land because of cargotest.
2 parents 9f1beaf + 79e25ce commit a3d86dd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/cargo/core/resolver/mod.rs

-5
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,6 @@ pub enum Method<'a> {
9898
},
9999
}
100100

101-
// Err(..) == standard transient error (e.g. I/O error)
102-
// Ok(Err(..)) == resolve error, but is human readable
103-
// Ok(Ok(..)) == success in resolving
104-
type ResolveResult<'a> = CargoResult<CargoResult<Box<Context<'a>>>>;
105-
106101
// Information about the dependencies for a crate, a tuple of:
107102
//
108103
// (dependency info, candidates, features activated)

0 commit comments

Comments
 (0)