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