View | Details | Raw Unified | Return to bug 34220
Collapse All | Expand All

(-)Catalina.java (-2 / +3 lines)
Lines 443-450 Link Here
443
        Exception ex = null;
443
        Exception ex = null;
444
        InputSource inputSource = null;
444
        InputSource inputSource = null;
445
        InputStream inputStream = null;
445
        InputStream inputStream = null;
446
        File file = null;
446
        try {
447
        try {
447
            File file = configFile();
448
            file = configFile();
448
            inputStream = new FileInputStream(file);
449
            inputStream = new FileInputStream(file);
449
            inputSource = new InputSource("file://" + file.getAbsolutePath());
450
            inputSource = new InputSource("file://" + file.getAbsolutePath());
450
        } catch (Exception e) {
451
        } catch (Exception e) {
Lines 463-469 Link Here
463
        }
464
        }
464
465
465
        if (inputStream == null) {
466
        if (inputStream == null) {
466
            log.warn("Can't load server.xml");
467
            log.warn("Can't load server.xml: " + file.getAbsolutePath());
467
            return;
468
            return;
468
        }
469
        }
469
470

Return to bug 34220