summaryrefslogtreecommitdiff
path: root/cpp/rubygen/99-0/Session.rb
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-03-04 20:42:19 +0000
committerGordon Sim <gsim@apache.org>2008-03-04 20:42:19 +0000
commitd47950ff7a88e4684d1e07e334e705776ed569a7 (patch)
tree23f00efd6c9009f158c0b9643746dd16fd8adbf6 /cpp/rubygen/99-0/Session.rb
parentcf9a1617599bb680deef2bab76fc6022f7dad50b (diff)
downloadqpid-python-d47950ff7a88e4684d1e07e334e705776ed569a7.tar.gz
Further updates to support final 0-10 spec
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@633627 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/rubygen/99-0/Session.rb')
-rw-r--r--cpp/rubygen/99-0/Session.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/rubygen/99-0/Session.rb b/cpp/rubygen/99-0/Session.rb
index 5a6f061937..1ec78f6167 100644
--- a/cpp/rubygen/99-0/Session.rb
+++ b/cpp/rubygen/99-0/Session.rb
@@ -6,9 +6,9 @@ require 'cppgen'
class CppGen
def session_methods
- excludes = ["channel", "connection", "session", "execution", "connection010", "session010"]
+ excludes = ["channel", "connection", "session", "execution"]
gen_methods=@amqp.methods_on(@chassis).reject { |m|
- excludes.include? m.parent.name
+ excludes.include? m.parent.name or m.body_name.include?("010")
}
end