diff options
author | ProgramFOX <programfox@hotmail.be> | 2014-09-26 20:35:01 +0200 |
---|---|---|
committer | ProgramFOX <programfox@hotmail.be> | 2014-09-26 20:35:01 +0200 |
commit | 71a05a9c397a012a959718a7b00e4cd0ce58b359 (patch) | |
tree | bdc92e93cbe6df29d28d8f013fc5691b52f24b78 /components/script/dom/nodelist.rs | |
parent | ab17d31bbf8c6884f858381f3d5b7e62c4de87c6 (diff) | |
download | servo-71a05a9c397a012a959718a7b00e4cd0ce58b359.tar.gz servo-71a05a9c397a012a959718a7b00e4cd0ce58b359.zip |
Made some DOM fields private.
Relevant to #2242.
Diffstat (limited to 'components/script/dom/nodelist.rs')
-rw-r--r-- | components/script/dom/nodelist.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/nodelist.rs b/components/script/dom/nodelist.rs index 1470060467a..716e0dc9be1 100644 --- a/components/script/dom/nodelist.rs +++ b/components/script/dom/nodelist.rs @@ -25,7 +25,7 @@ pub struct NodeList { } impl NodeList { - pub fn new_inherited(list_type: NodeListType) -> NodeList { + fn new_inherited(list_type: NodeListType) -> NodeList { NodeList { list_type: list_type, reflector_: Reflector::new(), |