<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -9,6 +9,6 @@ runtime = JMX::MBean.find_by_name &quot;java.lang:type=Runtime&quot;
 # The system_properties attribute of the Runtime MBean is an instance of
 #   TabularDataSupport
 sysprops = runtime.system_properties
-sysprops.values.each do | sysprop|
+sysprops.each do | sysprop|
   puts &quot;#{sysprop[&quot;key&quot;]} = #{sysprop[&quot;value&quot;]}&quot;
 end</diff>
      <filename>examples/runtime_sysprops.rb</filename>
    </modified>
    <modified>
      <diff>@@ -27,4 +27,14 @@ JavaUtilities.extend_proxy('javax.management.openmbean.CompositeDataSupport') do
   def [](key)
     self.get key
   end
+end
+
+JavaUtilities.extend_proxy('javax.management.openmbean.TabularDataSupport') do
+  include Enumerable
+  def each
+    self.values.each do |value|
+      yield value
+    end
+    self
+  end
 end
\ No newline at end of file</diff>
      <filename>lib/open_data_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c33c2f05223a4341e272ac6b37af039111d40c06</id>
    </parent>
  </parents>
  <author>
    <name>Jeff Mesnil</name>
    <email>jmesnil@gmail.com</email>
  </author>
  <url>http://github.com/jmesnil/jmx4r/commit/81bcc81f6a4d8e97b1120c520d2b0330f575cb63</url>
  <id>81bcc81f6a4d8e97b1120c520d2b0330f575cb63</id>
  <committed-date>2008-08-01T09:48:51-07:00</committed-date>
  <authored-date>2008-08-01T09:48:51-07:00</authored-date>
  <message>added helper method to make the TabularDataSupport proxies behave as regular Ruby Enumerable</message>
  <tree>45b81ec3a4d46b96fdbb4709673c20e0f23bae92</tree>
  <committer>
    <name>Jeff Mesnil</name>
    <email>jmesnil@gmail.com</email>
  </committer>
</commit>
