Skip to content

Commit

Permalink
Auto merge of #1116 - mattico:remove-pub-fixme, r=Diggsey
Browse files Browse the repository at this point in the history
Remove unnecessary pub mod

rust-lang/rust#18241 is fixed now, so this mod doesn't need to be pub.

Possible downside: the minimum compiler version to build is now 1.9.0 or thereabouts.
  • Loading branch information
bors committed May 18, 2017
2 parents e7ba330 + fc563b5 commit 0ad45aa
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/rustup-dist/src/component/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ pub use self::package::*;
// Transactional file system tools
mod transaction;
// The representation of a package, its components, and installation
//
// FIXME: Because of rust-lang/rust#18241 this must be pub to pub reexport
// the inner Package trait.
pub mod package;
mod package;
// The representation of *installed* components, and uninstallation
mod components;

0 comments on commit 0ad45aa

Please sign in to comment.