summaryrefslogtreecommitdiff
path: root/qpid/cpp/rubygen/amqpgen.rb
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-08-27 13:31:41 +0000
committerAlan Conway <aconway@apache.org>2007-08-27 13:31:41 +0000
commit4d6bb608337f0aa6a4f8d96ae0df5fffd981f113 (patch)
treee584fb8aee0782fde55acf6361bbd82221bd02ae /qpid/cpp/rubygen/amqpgen.rb
parent25392fe3101ff446bb008dc2c1f96451f3a06d39 (diff)
downloadqpid-python-4d6bb608337f0aa6a4f8d96ae0df5fffd981f113.tar.gz
* rubygen/cppgen.rb: Use uint rather than u_int form for consistency.
* rubygen/amqpgen.rb: Removed unnecessary sorting. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@570111 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/rubygen/amqpgen.rb')
-rwxr-xr-xqpid/cpp/rubygen/amqpgen.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/qpid/cpp/rubygen/amqpgen.rb b/qpid/cpp/rubygen/amqpgen.rb
index 068ecf7aae..6707b0c5a0 100755
--- a/qpid/cpp/rubygen/amqpgen.rb
+++ b/qpid/cpp/rubygen/amqpgen.rb
@@ -170,9 +170,6 @@ class AmqpClass < AmqpElement
amqp_child_reader :method
- # FIXME aconway 2007-08-27: REMOVE
- def methods_() children("method").sort_by_name; end
-
# chassis should be "client" or "server"
def methods_on(chassis)
@methods_on ||= { }
@@ -197,9 +194,6 @@ class AmqpRoot < AmqpElement
amqp_attr_reader :major, :minor
amqp_child_reader :class, :domain
- # FIXME aconway 2007-08-27: REMOVE
- def classes() children("class").sort_by_name; end
-
def version() major + "-" + minor; end
def domain_structs() domains.map{ |d| d.struct }.compact; end