Description: Fixes the parsing of the command line parameters containing several jars (i.e. "foo.jar:bar.jar")
 This fix has already been applied upstream
Author: Emmanuel Bourg <ebourg@apache.org>
Bug: https://sourceforge.net/p/clirr/bugs/8
--- a/core/src/java/net/sf/clirr/cli/Clirr.java
+++ b/core/src/java/net/sf/clirr/cli/Clirr.java
@@ -235,7 +235,7 @@
         int pos = 0;
         while (pos < path.length())
         {
-            int colonPos = path.indexOf(pos, File.pathSeparatorChar);
+            int colonPos = path.indexOf(File.pathSeparatorChar, pos);
             if (colonPos == -1)
             {
                 files.add(new File(path.substring(pos)));
