[Jadclipse-develop] [ jadclipse-Bugs-1728021 ] Fail to decompile classes on the default folder of j
Status: Beta
Brought to you by:
vovikg
|
From: SourceForge.net <no...@so...> - 2009-11-15 21:52:44
|
Bugs item #1728021, was opened at 2007-05-30 02:39 Message generated for change (Settings changed) made by jgyger You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=427342&aid=1728021&group_id=40205 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Fail to decompile classes on the default folder of jar Initial Comment: The JadclipseSourceMapper.java code fails to get the correct class file name if the class happens to be located in the default folder of a Jar file. The classFile path returned from IBinaryType will be like "a.jar|b.class". The current code searches the last "/" and returns "a.jar|b.class" instead of "b.class". This bug can be fixed by adding the following two lines at line 145: p = classFile.lastIndexOf(IBinaryType.JAR_FILE_ENTRY_SEPARATOR); classFile = classFile.substring(p + 1); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=427342&aid=1728021&group_id=40205 |