Issue Details (XML | Word | Printable)

Key: JELLY-134
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: dion gillard
Reporter: dion gillard
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Commons Jelly

Handle JVMs that return null for getClass().getClassLoader()

Created: 09/Sep/04 02:02 PM   Updated: 09/Sep/04 03:14 PM
Return to search
Component/s: core / taglib.core
Affects Version/s: 1.0-beta-4
Fix Version/s: 1.0-beta-4

Time Tracking:
Not Specified

Resolution Date: 09/Sep/04 03:14 PM


 Description  « Hide
ClassLoader classLoader = this.getClass().getClassLoader () ;

the following
if (classLoader == null) {
classLoader = ClassLoader.getSystemClassLoader() ;
}



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
dion gillard added a comment - 09/Sep/04 03:14 PM
Added ClassLoaderUtils class and used it whereever getClass().getClassLoader() was being used.