Message7069

Author fwierzbicki
Recipients espeed, fwierzbicki
Date 2012-04-27.17:13:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335546815.69.0.573062935799.issue1878@psf.upfronthosting.co.za>
In-reply-to
Content
I'm sure I'm just reading the bug report wrong - I tried

import java.util.HashMap;
import java.util.Iterator;

public class IterableMap extends HashMap implements Iterable {
    public Iterator iterator() {
        return this.keySet().iterator();
    }
}

But that doesn't trigger an MRO conflict - do you have a simple code snippet that triggers the problem?
History
Date User Action Args
2012-04-27 17:13:35fwierzbickisetmessageid: <1335546815.69.0.573062935799.issue1878@psf.upfronthosting.co.za>
2012-04-27 17:13:35fwierzbickisetrecipients: + fwierzbicki, espeed
2012-04-27 17:13:35fwierzbickilinkissue1878 messages
2012-04-27 17:13:35fwierzbickicreate