| 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: | Core | Assignee: | 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
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?
|