Auto merge of #9266 - frewsxcv:redundant-getter-tracking-issue, r=metajack

Link to tracking issue for redundant codegen getter

https://github.com/servo/servo/issues/5875

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9266)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-01-13 00:11:39 +05:30
commit 6736593c47

View file

@ -53,7 +53,8 @@ impl HTMLFormControlsCollectionMethods for HTMLFormControlsCollection {
}
// FIXME: This shouldn't need to be implemented here since HTMLCollection (the parent of
// HTMLFormControlsCollection) implements IndexedGetter
// HTMLFormControlsCollection) implements IndexedGetter.
// https://github.com/servo/servo/issues/5875
//
// https://dom.spec.whatwg.org/#dom-htmlcollection-item
fn IndexedGetter(&self, index: u32, found: &mut bool) -> Option<Root<Element>> {