From b17df33151cbf59c99262d2c164b7ed9765b89a3 Mon Sep 17 00:00:00 2001 From: Roel van Dijk Date: Wed, 26 Sep 2012 16:44:40 +0200 Subject: [PATCH] Remove helper method used by deprecated code. --- lib/neography/property_container.rb | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/neography/property_container.rb b/lib/neography/property_container.rb index e3868cc..2ab0dbc 100644 --- a/lib/neography/property_container.rb +++ b/lib/neography/property_container.rb @@ -13,22 +13,5 @@ def initialize(hash=nil) end end - # the arguments are either a Rest instance, or something else - def self.split_args(*args) - db = other = nil - - args.each do |arg| - case arg - when Rest - db = arg - else - other = arg - end - end - db ||= Neography::Rest.new - - [ db, other ] - end - end end