From dc608319b0137e7dae45db485888666904c081b2 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Mon, 7 May 2018 22:10:51 -0700 Subject: [PATCH] Remove unused function. --- query-pull/src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/query-pull/src/lib.rs b/query-pull/src/lib.rs index 24cd62a6..26ee1895 100644 --- a/query-pull/src/lib.rs +++ b/query-pull/src/lib.rs @@ -149,13 +149,6 @@ pub struct Puller { } impl Puller { - pub fn prepare_simple_attributes(schema: &Schema, attributes: Vec) -> Result { - Puller::prepare(schema, - attributes.into_iter() - .map(|e| PullAttributeSpec::Attribute(PullConcreteAttribute::Entid(e).into())) - .collect()) - } - pub fn prepare(schema: &Schema, attributes: Vec) -> Result { // TODO: eventually this entry point will handle aliasing and that kind of // thing. For now it's just a convenience.