Re: Broken source code at http://wiki.netbeans.org/OpenProjectsProgramaticallyInNetBeansIDE
Gary Greenberg <[email protected]>
| Newsgroups | gmane.comp.java.ide.netbeans.user,gmane.comp.java.netbeans.devel |
|---|---|
| Message-ID | <[email protected]> |
That is probably belong to nbdev group, rather than here. > On Nov 22, 2015, at 7:13 PM, [email protected] wrote: > > Hello there! > I found that source code at > http://wiki.netbeans.org/OpenProjectsProgramaticallyInNetBeansIDE is > broken. > I logged into web site to edit, but seems I don't have enough rights to > edit the page. I don't know that door to knock about this... > > but anyway... here is lines with broken code: > Project[[ | ]] array = new Project[1]; > Project[[ | ]] array = new Project[[1 | 1]]; array[0] = project; > > and fixed ones: > Project[] array = new Project[1]; > Project[] array = new Project[1]]; array[0] = project;