This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

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

(-)JUnitExternalExecutor.java (-1 / +1 lines)
Lines 261-267 Link Here
261
                String pathString = TestUtil.canonicalize(locLib).getPath();
261
                String pathString = TestUtil.canonicalize(locLib).getPath();
262
                boolean containsSpace = pathString.indexOf(' ') != -1;
262
                boolean containsSpace = pathString.indexOf(' ') != -1;
263
                if (containsSpace) {
263
                if (containsSpace) {
264
                    buf.append('"').append(pathString).append('"');
264
                    buf.append(pathString);
265
                    needsQuotes = true;
265
                    needsQuotes = true;
266
                } else {
266
                } else {
267
                    buf.append(pathString);
267
                    buf.append(pathString);

Return to bug 42020