You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2005/02/01 02:07:22 UTC

svn commit: r149343 - geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java

Author: jboynes
Date: Mon Jan 31 17:07:21 2005
New Revision: 149343

URL: http://svn.apache.org/viewcvs?view=rev&rev=149343
Log:
actually use headers

Modified:
    geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java

Modified: geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java
URL: http://svn.apache.org/viewcvs/geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java?view=diff&r1=149342&r2=149343
==============================================================================
--- geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java (original)
+++ geronimo/trunk/specs/javamail/src/java/javax/mail/internet/MimeMessage.java Mon Jan 31 17:07:21 2005
@@ -506,7 +506,7 @@
     }
 
     public Enumeration getMatchingHeaders(String[] names) throws MessagingException {
-        return getMatchingHeaders(names);
+        return headers.getMatchingHeaders(names);
     }
 
     public Enumeration getNonMatchingHeaders(String[] names) throws MessagingException {