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

(-)a/css.editor/src/org/netbeans/modules/css/editor/CssHelpResolver.java (-1 / +1 lines)
Lines 165-171 Link Here
165
165
166
    public URL getPropertyHelpURL(String propertyName) {
166
    public URL getPropertyHelpURL(String propertyName) {
167
        PropertyDescriptor pd = getPD(propertyName);
167
        PropertyDescriptor pd = getPD(propertyName);
168
        if (pd == null) {
168
        if (pd == null || HELP_URL==null) {
169
            return null;
169
            return null;
170
        } else {
170
        } else {
171
            try {
171
            try {
(-)a/css.editor/src/org/netbeans/modules/css/gsf/CSSCompletion.java (-1 / +5 lines)
Lines 459-465 Link Here
459
    }
459
    }
460
   
460
   
461
    public ElementHandle resolveLink(String link, ElementHandle elementHandle) {
461
    public ElementHandle resolveLink(String link, ElementHandle elementHandle) {
462
        return new ElementHandle.UrlHandle(CssHelpResolver.HELP_URL + link);
462
        if(CssHelpResolver.HELP_URL==null){
463
            return null;
464
        }else{
465
            return new ElementHandle.UrlHandle(CssHelpResolver.HELP_URL + link);
466
        }
463
    }
467
    }
464
    
468
    
465
    public String getPrefix(CompilationInfo info, int caretOffset, boolean upToOffset) {
469
    public String getPrefix(CompilationInfo info, int caretOffset, boolean upToOffset) {

Return to bug 150408