[Clirr-devel] [ clirr-Bugs-1970547 ] Class path not parsed correctly
Status: Alpha
Brought to you by:
lkuehne
From: SourceForge.net <no...@so...> - 2008-05-23 14:46:47
|
Bugs item #1970547, was opened at 2008-05-23 14:46 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590799&aid=1970547&group_id=89627 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: Open Resolution: None Priority: 5 Private: No Submitted By: CapnNemo (capnnemo) Assigned to: Nobody/Anonymous (nobody) Summary: Class path not parsed correctly Initial Comment: pathToFileArray(String path) uses int colonPos = path.indexOf(pos, File.pathSeparatorChar); However, that should be: int colonPos = path.indexOf(File.pathSeparatorChar, pos); The parameters to indexOf() are the wrong way round. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=590799&aid=1970547&group_id=89627 |