237238239240241242243244245
if (protocol == null) { throw new IllegalArgumentException("'protocol' cannot be null"); } URLStreamHandler urlSH = null; if (protocol.equals("classpath")) { urlSH = new ClasspathURLStreamHandler(); } return urlSH; }
234235236237238239240241242