diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-05-01 18:38:58 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-05-01 18:49:16 +0900 |
commit | 78856c87a44c4d36efd0c9e0c9c2460de335b2ad (patch) | |
tree | ad5c7fdb0c4e8bb12ae4799a9caf3d4f1890ef4b /src/components/script/dom/node.rs | |
parent | 14063b242e9564aab40f30c5fcdd36daadf657a2 (diff) | |
download | servo-78856c87a44c4d36efd0c9e0c9c2460de335b2ad.tar.gz servo-78856c87a44c4d36efd0c9e0c9c2460de335b2ad.zip |
Remove the 'pub use self::BindingDeclarations::*;' export.
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 56d646b1661..95c41e8b7d7 100644 --- a/src/components/script/dom/node.rs +++ b/src/components/script/dom/node.rs @@ -9,7 +9,7 @@ use dom::bindings::codegen::InheritTypes::{CommentCast, DocumentCast, DocumentTy use dom::bindings::codegen::InheritTypes::{ElementCast, TextCast, NodeCast}; use dom::bindings::codegen::InheritTypes::{CharacterDataCast, NodeBase, NodeDerived}; use dom::bindings::codegen::InheritTypes::{ProcessingInstructionCast, EventTargetCast}; -use dom::bindings::codegen::NodeBinding::NodeConstants; +use dom::bindings::codegen::BindingDeclarations::NodeBinding::NodeConstants; use dom::bindings::js::JS; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; use dom::bindings::error::{ErrorResult, Fallible, NotFound, HierarchyRequest}; |