rustc/metadata: Removed stray debug statements

This commit is contained in:
Hong Chulju 2014-01-22 19:38:20 +09:00
parent 47660f74fc
commit 86b0564f73

View file

@ -1,4 +1,4 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at // file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT. // http://rust-lang.org/COPYRIGHT.
// //
@ -211,17 +211,14 @@ pub fn get_field_type(tcx: ty::ctxt, class_id: ast::DefId,
let cstore = tcx.cstore; let cstore = tcx.cstore;
let cdata = cstore.get_crate_data(class_id.crate); let cdata = cstore.get_crate_data(class_id.crate);
let all_items = reader::get_doc(reader::Doc(cdata.data()), tag_items); let all_items = reader::get_doc(reader::Doc(cdata.data()), tag_items);
debug!("Looking up {:?}", class_id);
let class_doc = expect(tcx.diag, let class_doc = expect(tcx.diag,
decoder::maybe_find_item(class_id.node, all_items), decoder::maybe_find_item(class_id.node, all_items),
|| format!("get_field_type: class ID {:?} not found", || format!("get_field_type: class ID {:?} not found",
class_id) ); class_id) );
debug!("looking up {:?} : {:?}", def, class_doc);
let the_field = expect(tcx.diag, let the_field = expect(tcx.diag,
decoder::maybe_find_item(def.node, class_doc), decoder::maybe_find_item(def.node, class_doc),
|| format!("get_field_type: in class {:?}, field ID {:?} not found", || format!("get_field_type: in class {:?}, field ID {:?} not found",
class_id, def) ); class_id, def) );
debug!("got field data {:?}", the_field);
let ty = decoder::item_type(def, the_field, tcx, cdata); let ty = decoder::item_type(def, the_field, tcx, cdata);
ty::ty_param_bounds_and_ty { ty::ty_param_bounds_and_ty {
generics: ty::Generics {type_param_defs: @~[], generics: ty::Generics {type_param_defs: @~[],