diff options
author | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-29 21:48:39 +0900 |
---|---|---|
committer | rohan.prinja <rohan.prinja@samsung.com> | 2015-10-29 21:48:39 +0900 |
commit | 4a4f041948f38818d9616125c1639e1431327d09 (patch) | |
tree | 8a2960a3a9761fddd78cdd2d14ad427bda44e264 /components/script/dom/xmlhttprequest.rs | |
parent | 430578355b75a3d58bec48b865cccbcf7eb8c990 (diff) | |
download | servo-4a4f041948f38818d9616125c1639e1431327d09.tar.gz servo-4a4f041948f38818d9616125c1639e1431327d09.zip |
remove get_rooted() and replace all references to it with references to get()
Diffstat (limited to 'components/script/dom/xmlhttprequest.rs')
-rw-r--r-- | components/script/dom/xmlhttprequest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/xmlhttprequest.rs b/components/script/dom/xmlhttprequest.rs index 067ba1019ed..a68d9478270 100644 --- a/components/script/dom/xmlhttprequest.rs +++ b/components/script/dom/xmlhttprequest.rs @@ -721,7 +721,7 @@ impl XMLHttpRequestMethods for XMLHttpRequest { // https://xhr.spec.whatwg.org/#the-responsexml-attribute fn GetResponseXML(&self) -> Option<Root<Document>> { - self.response_xml.get_rooted() + self.response_xml.get() } } |