OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 17 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 17 Rev 180
Line 118... Line 118...
118
        URL url = null;
118
        URL url = null;
119
        int index = -1;
119
        int index = -1;
120
 
120
 
121
        // check for !/
121
        // check for !/
122
        if ((index = indexOfBangSlash(spec)) == -1) {
122
        if ((index = indexOfBangSlash(spec)) == -1) {
123
            throw new IllegalArgumentException("no " + JarJarURLConnection.SEPARATOR + " in spec");
123
            throw new IllegalArgumentException("no " + JarJarURLConnection.SEPARATOR + " in spec: " + spec);
124
        }
124
        }
125
        // test the inner URL
125
        // test the inner URL
126
        try {
126
        try {
127
            String innerSpec = spec.substring(0, index - 1);
127
            String innerSpec = spec.substring(0, index - 1);
128
 
128