Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 361690 - Work out the diffs between vanilla activation 1.1.1 jar and Hudson version
Summary: Work out the diffs between vanilla activation 1.1.1 jar and Hudson version
Status: RESOLVED NOT_ECLIPSE
Alias: None
Product: Hudson
Classification: Technology
Component: Core (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Duncan Mills CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-21 13:01 EDT by Duncan Mills CLA
Modified: 2011-11-23 08:22 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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?