diff options
author | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-27 14:47:33 +0530 |
---|---|---|
committer | Saurabh Anand <saurabhanandiit@gmail.com> | 2014-02-28 13:32:00 +0530 |
commit | 5c5cb3e9a724508956791c8b3089fd2c40e7fe2d (patch) | |
tree | c74e56e1cf9d90921d9dd453ba52d5d618d7d132 /src/components/script/dom/node.rs | |
parent | 82b74a373a404c334ae711ec78dd4d06690f2cbb (diff) | |
download | servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.tar.gz servo-5c5cb3e9a724508956791c8b3089fd2c40e7fe2d.zip |
Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)
Diffstat (limited to 'src/components/script/dom/node.rs')
-rw-r--r-- | src/components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/node.rs b/src/components/script/dom/node.rs index 1aa4a0ff825..50b70cf14e8 100644 --- a/src/components/script/dom/node.rs +++ b/src/components/script/dom/node.rs @@ -9,7 +9,7 @@ use dom::bindings::codegen::InheritTypes::{CharacterDataCast, NodeBase, NodeDeri use dom::bindings::codegen::InheritTypes::ProcessingInstructionCast; use dom::bindings::js::JS; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; -use dom::bindings::utils::{ErrorResult, Fallible, NotFound, HierarchyRequest}; +use dom::bindings::error::{ErrorResult, Fallible, NotFound, HierarchyRequest}; use dom::bindings::utils; use dom::characterdata::CharacterData; use dom::document::Document; |