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

(-)a/html.editor.lib/src/org/netbeans/editor/ext/html/parser/SyntaxElement.java (-3 / +6 lines)
Lines 229-237 Link Here
229
            StringBuffer ret = new StringBuffer( super.toString() );
229
            StringBuffer ret = new StringBuffer( super.toString() );
230
            ret.append( " - {" );   // NOI18N
230
            ret.append( " - {" );   // NOI18N
231
            
231
            
232
            for( Iterator i = attribs.iterator(); i.hasNext(); ) {
232
            //#159585
233
                ret.append( i.next() );
233
            if(attribs!=null){
234
                ret.append( ", "  );    // NOI18N
234
                for( Iterator i = attribs.iterator(); i.hasNext(); ) {
235
                    ret.append( i.next() );
236
                    ret.append( ", "  );    // NOI18N
237
                }
235
            }
238
            }
236
            
239
            
237
            ret.append( "}" );      //NOI18N
240
            ret.append( "}" );      //NOI18N

Return to bug 159585