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 247971
Collapse All | Expand All

(-)java.api.common/src/org/netbeans/modules/java/api/common/project/BaseActionProvider.java (-1 / +1 lines)
Lines 1854-1860 Link Here
1854
    private void copyMultiValue(String propertyName, Map<String, Object> properties) {
1854
    private void copyMultiValue(String propertyName, Map<String, Object> properties) {
1855
        String val = evaluator.getProperty(propertyName);
1855
        String val = evaluator.getProperty(propertyName);
1856
        if (val != null) {
1856
        if (val != null) {
1857
1857
            val =val.replace("\n", " ");
1858
            putMultiValue(properties,propertyName, val);
1858
            putMultiValue(properties,propertyName, val);
1859
        }
1859
        }
1860
    }
1860
    }

Return to bug 247971