Remove duplicated call to `base.GetDrawableComponent`

This commit is contained in:
Dean Herbert 2021-05-13 13:02:55 +09:00
parent 6caf4e3879
commit a38cb61b08
1 changed files with 2 additions and 2 deletions

View File

@ -92,10 +92,10 @@ public override Drawable GetDrawableComponent(ISkinComponent component)
return skinnableTargetWrapper;
}
return null;
break;
}
return base.GetDrawableComponent(component);
return null;
}
public override IBindable<TValue> GetConfig<TLookup, TValue>(TLookup lookup)