Skip to content

Commit

Permalink
auto merge of #14239 : alexcrichton/rust/issue-14225, r=huonw
Browse files Browse the repository at this point in the history
These are taken care of with compiler errors later on, no need to spam with
extra unformatted information unconditionally.

Closes #14225
  • Loading branch information
bors committed May 17, 2014
2 parents 1e0379f + 6959b4f commit 8befaba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/middle/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2996,7 +2996,7 @@ impl<'a> Resolver<'a> {
Some(ref type_def) => {
match type_def.module_def {
None => {
error!("!!! (resolving module in lexical \
debug!("!!! (resolving module in lexical \
scope) module wasn't actually a \
module!");
return Failed;
Expand All @@ -3007,7 +3007,7 @@ impl<'a> Resolver<'a> {
}
}
None => {
error!("!!! (resolving module in lexical scope) module
debug!("!!! (resolving module in lexical scope) module
wasn't actually a module!");
return Failed;
}
Expand Down

0 comments on commit 8befaba

Please sign in to comment.