<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -34,9 +34,11 @@ end
 
 class Multimap &lt; Hash
   def to_graph_label
-    &quot;#{hash_keys.map { |e|
-      &quot;&lt;#{e.to_graph_node}&gt; #{e.to_graph_label}&quot;
-    }.join('|')}|&lt;default&gt;&quot;
+    label = []
+    hash_each_pair do |key, _|
+      label &lt;&lt; &quot;&lt;#{key.to_graph_node}&gt; #{key.to_graph_label}&quot;
+    end
+    &quot;#{label.join('|')}|&lt;default&gt;&quot;
   end
 
   def add_to_graph(graph)</diff>
      <filename>extras/graphing.rb</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@ class FuzzyNestedMultimap &lt; NestedMultimap
         hash_each_pair { |k, l| l &lt;&lt; value if key =~ k }
         self.default &lt;&lt; value
       else
-        hash_keys.each { |k|
+        hash_each_pair { |k, _|
           if key =~ k
             args[0] = k
             super(*args)</diff>
      <filename>lib/fuzzy_nested_multimap.rb</filename>
    </modified>
    <modified>
      <diff>@@ -68,6 +68,9 @@ class Multimap &lt; Hash
   alias_method :hash_aset, :[]=
   private :hash_aset
 
+  alias_method :hash_each_pair, :each_pair
+  private :hash_each_pair
+
   # call-seq:
   #   map[key] = value        =&gt; value
   #   map.store(key, value)   =&gt; value
@@ -107,9 +110,6 @@ class Multimap &lt; Hash
     end
   end
 
-  alias_method :hash_each_pair, :each_pair
-  private :hash_each_pair
-
   # call-seq:
   #   map.each { |key, value| block } =&gt; map
   #
@@ -301,9 +301,6 @@ class Multimap &lt; Hash
     h
   end
 
-  alias_method :hash_keys, :keys
-  private :hash_keys
-
   # call-seq:
   #   map.keys    =&gt; multiset
   #</diff>
      <filename>lib/multimap.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>63c1091a57e69aa0cb65a92311c2158afded093a</id>
    </parent>
  </parents>
  <author>
    <name>Joshua Peek</name>
    <email>josh@joshpeek.com</email>
  </author>
  <url>http://github.com/josh/multimap/commit/fa013e4ee4f022d751623cf29b220d8b512384c1</url>
  <id>fa013e4ee4f022d751623cf29b220d8b512384c1</id>
  <committed-date>2009-05-26T17:31:37-07:00</committed-date>
  <authored-date>2009-05-26T17:31:37-07:00</authored-date>
  <message>don't really need hash_keys</message>
  <tree>a410350597b40f5e5d773a53d73292601893a0f9</tree>
  <committer>
    <name>Joshua Peek</name>
    <email>josh@joshpeek.com</email>
  </committer>
</commit>
