1
Fork 0

Remove pointless or

This commit is contained in:
Mark Rousskov 2019-09-13 14:32:59 -04:00
parent 61f16920b3
commit 583a81dc5e

View file

@ -3405,7 +3405,7 @@ fn render_impl(w: &mut Buffer, cx: &Context, i: &Impl, link: AssocItemLink<'_>,
let item_type = item.type_(); let item_type = item.type_();
let name = item.name.as_ref().unwrap(); let name = item.name.as_ref().unwrap();
let render_method_item: bool = match render_mode { let render_method_item = match render_mode {
RenderMode::Normal => true, RenderMode::Normal => true,
RenderMode::ForDeref { mut_: deref_mut_ } => should_render_item(&item, deref_mut_), RenderMode::ForDeref { mut_: deref_mut_ } => should_render_item(&item, deref_mut_),
}; };
@ -3474,7 +3474,7 @@ fn render_impl(w: &mut Buffer, cx: &Context, i: &Impl, link: AssocItemLink<'_>,
_ => panic!("can't make docs for trait item with name {:?}", item.name) _ => panic!("can't make docs for trait item with name {:?}", item.name)
} }
if render_method_item || render_mode == RenderMode::Normal { if render_method_item {
if !is_default_item { if !is_default_item {
if let Some(t) = trait_ { if let Some(t) = trait_ {
// The trait item may have been stripped so we might not // The trait item may have been stripped so we might not