Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 361690

Summary: Work out the diffs between vanilla activation 1.1.1 jar and Hudson version
Product: [Technology] Hudson Reporter: Duncan Mills <duncan.r.mills>
Component: CoreAssignee: Duncan Mills <duncan.r.mills>
Status: RESOLVED NOT_ECLIPSE QA Contact:
Severity: normal    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Duncan Mills CLA 2011-10-21 13:01:24 EDT
See CQ 5774
Comment 1 Duncan Mills CLA 2011-11-23 08:22:11 EST
Primary code Change between the origional version and the hudson fork is:

Additional error handling added in
src/main/java/javax/activation/MailcapCommandMap.java
Line 608: if (cl != null)    // XXX - always true?
Replaced with:

608: if (!DataContentHandler.class.isAssignableFrom(cl)) {
609:    if (LogSupport.isLoggable())
610:       LogSupport.log("DCH " + name + " is of invalid type");
611:    return null;
612: }
613: if (cl != null)    // XXX - always true?