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.

Bug 158333 - typo in BeanBuilder.java
Summary: typo in BeanBuilder.java
Status: NEW
Alias: None
Product: ide
Classification: Unclassified
Component: Schema2Beans (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: schema2beans-issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-02-10 17:54 UTC by scanti
Modified: 2009-02-11 08:22 UTC (History)
1 user (show)

See Also:
Issue Type: TASK
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description scanti 2009-02-10 17:54:44 UTC
In BeanBuilder I found this lines

if (l.getParent() != null)
    ored = ored || l.getParent().isSequenceOr();

it think it should be

if (l.getParent() != null)
    ored  || l.getParent().isSequenceOr();