[jira] [Commented] (NETBEANS-2759) Upgrade PHP-related plug-ins

2019-06-26 Thread Czukowski (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2759?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873825#comment-16873825
 ] 

Czukowski commented on NETBEANS-2759:
-

I could try and fix it gradually myself, but I have near-zero Java experience, 
let alone NetBeans project, so I would require some guidance.

> Upgrade PHP-related plug-ins
> 
>
> Key: NETBEANS-2759
> URL: https://issues.apache.org/jira/browse/NETBEANS-2759
> Project: NetBeans
>  Issue Type: Sub-task
>Affects Versions: 11.0
>Reporter: Czukowski
>Priority: Major
>  Labels: php
>
> Answering the call to help identify NetBeans features that are no longer 
> working properly.
> Since Composer has become widespread, most of the tools are now installed as 
> projects dependencies, not global. Yet NetBeans generally only allows to 
> specify global paths to these tools via Options. When different projects use 
> different versions of these tools, one global path doesn't suffice anymore as 
> it may work with some projects, but not the others.
> One notable exception is PHPUnit that currently allows per-project 
> configuration, although it is called 'Use custom PHPUnit script' while 
> nowadays it's really a must to set this option for each project.
> By default, paths to these tools should be detected from the project's 
> composer file (perhaps by making these plug-ins dependent on the Composer 
> service/plug-in that will do the common work?). An option to specify the path 
> manually on per-project basis would be nice too for edge cases, but not 
> really necessary. Other configuration options should be made available to 
> per-project basis as well.
> In my work, I only use some of the plug-ins, but I think the above issue 
> applies to most of them.
> There are also some specific issues with Code Analysis plug-ins which I 
> wasn't able to run properly:
> *PHPStan* single file inspection (Source / Inspect...): If there's no error, 
> it opens the Inspector tab, but it's blank, perhaps it should say something 
> like "no errors". If there is an error (I can see the output XML in the 
> Output window), the Inspect dialog doesn't go away and there is an exception 
> reported:
> {code}
> java.lang.NullPointerException
>   at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140)
>   at 
> org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186)
>   at 
> org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
> [catch] at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {code}
> *Code Sniffer* detects the installed coding standards, but it doesn't offer 
> any means to specify one directly, and it doesn't detect the one that is used 
> in my project. Perhaps it has to do with the fact that it's not a global 
> tool, so there's no option or need to configure coding standards in the same 
> way as one would if the tool was installed globally. In my project it is 
> included as a part of a Phing build and includes a command line option 
> pointing to the coding standard in use.
> This looks like it should be split to more sub-issues.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2759) Upgrade PHP-related plug-ins

2019-06-26 Thread Czukowski (JIRA)
Czukowski created NETBEANS-2759:
---

 Summary: Upgrade PHP-related plug-ins
 Key: NETBEANS-2759
 URL: https://issues.apache.org/jira/browse/NETBEANS-2759
 Project: NetBeans
  Issue Type: Sub-task
Affects Versions: 11.0
Reporter: Czukowski


Answering the call to help identify NetBeans features that are no longer 
working properly.

Since Composer has become widespread, most of the tools are now installed as 
projects dependencies, not global. Yet NetBeans generally only allows to 
specify global paths to these tools via Options. When different projects use 
different versions of these tools, one global path doesn't suffice anymore as 
it may work with some projects, but not the others.

One notable exception is PHPUnit that currently allows per-project 
configuration, although it is called 'Use custom PHPUnit script' while nowadays 
it's really a must to set this option for each project.

By default, paths to these tools should be detected from the project's composer 
file (perhaps by making these plug-ins dependent on the Composer 
service/plug-in that will do the common work?). An option to specify the path 
manually on per-project basis would be nice too for edge cases, but not really 
necessary. Other configuration options should be made available to per-project 
basis as well.

In my work, I only use some of the plug-ins, but I think the above issue 
applies to most of them.

There are also some specific issues with Code Analysis plug-ins which I wasn't 
able to run properly:

*PHPStan* single file inspection (Source / Inspect...): If there's no error, it 
opens the Inspector tab, but it's blank, perhaps it should say something like 
"no errors". If there is an error (I can see the output XML in the Output 
window), the Inspect dialog doesn't go away and there is an exception reported:

{code}
java.lang.NullPointerException
at org.netbeans.modules.php.analysis.util.Mappers.map(Mappers.java:54)
at 
org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.doAnalyze(PHPStanAnalyzerImpl.java:140)
at 
org.netbeans.modules.php.analysis.PHPStanAnalyzerImpl.analyze(PHPStanAnalyzerImpl.java:92)
at 
org.netbeans.modules.analysis.RunAnalysis$1$1.doRunAnalyzer(RunAnalysis.java:186)
at 
org.netbeans.modules.analysis.RunAnalysis$1$1.run(RunAnalysis.java:142)
at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
[catch] at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
{code}

*Code Sniffer* detects the installed coding standards, but it doesn't offer any 
means to specify one directly, and it doesn't detect the one that is used in my 
project. Perhaps it has to do with the fact that it's not a global tool, so 
there's no option or need to configure coding standards in the same way as one 
would if the tool was installed globally. In my project it is included as a 
part of a Phing build and includes a command line option pointing to the coding 
standard in use.

This looks like it should be split to more sub-issues.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2758) Gradle projects: Enable convenient profiling

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2758:


 Summary: Gradle projects: Enable convenient profiling
 Key: NETBEANS-2758
 URL: https://issues.apache.org/jira/browse/NETBEANS-2758
 Project: NetBeans
  Issue Type: Improvement
  Components: projects - Gradle
 Environment: Netbeans 11.1 beta 2
Oracle JDK 8
Windows 10
Reporter: Travis
Assignee: Laszlo Kishalmi


When I load gradle projects using Netbeans 11.1 beta 2, all of the IDEs 
profiler operations are disabled except for "Profile:Attach to External 
Process" which isn't at all convenient.

 

Can the gradle support be enhanced to enable convenient use of the profiler 
(for main, run single, test single, etc)?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2757) Gradle projects: unable to "rerun" tests

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2757:


 Summary: Gradle projects: unable to "rerun" tests
 Key: NETBEANS-2757
 URL: https://issues.apache.org/jira/browse/NETBEANS-2757
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
 Environment: Windows 10
Gradle 5.2
Netbeans 11.1 beta 2
Oracle JDK 8
JUnit 5.4
Reporter: Travis
Assignee: Laszlo Kishalmi


After running tests using the built-in gradle support of Netbeans 11.1 beta 2, 
the "rerun" button in the "Test Results" pane is always disabled.  And the 
"Rerun failed" button is always enabled, but pressing it seems to do nothing at 
all (and no notifications about exceptions).

 

Can the "rerun" and "rerun failed" operations be fixed to work correctly for 
gradle projects?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2756) Gradle project properties: Couldn't get license header to work

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2756:


 Summary: Gradle project properties: Couldn't get license header to 
work
 Key: NETBEANS-2756
 URL: https://issues.apache.org/jira/browse/NETBEANS-2756
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
 Environment: Windows 10
Netbeans 11.1 beta 2
Oracle JDK 8
Gradle 5.2
Reporter: Travis
Assignee: Laszlo Kishalmi


I tried adding the following line in my root project's gradle.properties file:

 

netbeans.license=licenseheader

 

And placing a file named "licenseheader" in the root project directory.

 

After doing so and creating a new file in the IDE editor, the header was not 
included.  Also, the project properties "License Headers" settings appear the 
same as before, as if the new line in gradle.properties is being completely 
ignored.  There were no notifications about any exceptions during this 
experiment.

 

 

I believe what I did was consistent with the directions at:

[https://cwiki.apache.org/confluence/display/NETBEANS/License+Headers]

 

Am I doing something wrong?  Or is there still a bug with this feature?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2755) Gradle project properties: Support for attaching sources for project libraries (in gradle.properties, or any project-versionable file)

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2755:


 Summary: Gradle project properties: Support for attaching sources 
for project libraries (in gradle.properties, or any project-versionable file)
 Key: NETBEANS-2755
 URL: https://issues.apache.org/jira/browse/NETBEANS-2755
 Project: NetBeans
  Issue Type: Wish
  Components: projects - Gradle
Reporter: Travis
Assignee: Laszlo Kishalmi


I have a large multi-project build which we store in a git repo.  Some of our 
developers use Netbeans and would like the library dependency .jar files to 
have attached sources, so that they can conveniently review their 
sources/javadocs during IDE code development.  Although it's possible to attach 
sources, the attachment isn't saved inside the project properties, and isn't 
relative to the project root directory.  So it doesn't seem possible to set up 
our repo so that netbeans users automatically get attaches library source files 
(where the source files are stored inside the same repo).

 

Perhaps it would work if I modified our build.gradle to declare the sources as 
build dependencies, but this is bogus and undesirable.

 

With the older gradle plug-in, I was able to add the sources as dependencies in 
the netbeans-init.gradle, and this worked fine.

 

Is it possible for the new build-in Gradle support to be enhanced to allow 
library source attachments to be tracked, in a manner that allows both the 
sources and their attachment settings to live inside the project's source repo?

 

(By the way, other than a few missing features and a couple of minor exceptions 
thrown, the new built-in gradle support is really nice, and generally works 
well.  The existing customizability is also really good!  Thank you!)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2754) ClassNotFoundException when opening gradle project properties dialog

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2754:


 Summary: ClassNotFoundException when opening gradle project 
properties dialog
 Key: NETBEANS-2754
 URL: https://issues.apache.org/jira/browse/NETBEANS-2754
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
 Environment: Windows 10
Oracle JDK 8
Netbeans 11.1 beta2
Gradle 5.2
Reporter: Travis
Assignee: Laszlo Kishalmi


With gradle projects open in Netbeans 11.1 beta2, immediately upon opening the 
"project properties" dialog I always get a notification with the following 
exception.  This doesn't seem to cause any problems, however.  My project has 
no javascript... just pure Java.

 

java.lang.ClassNotFoundException: 
org.netbeans.modules.javascript2.requirejs.ui.RequireJsCustomizer.createCustomizer
 at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
 at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)
Caused: java.lang.ClassNotFoundException: 
org.netbeans.modules.javascript2.requirejs.ui.RequireJsCustomizer.createCustomizer
 starting from SystemClassLoader[558 modules] with possible defining loaders 
null and declared parents [org.netbeans.MainImpl$BootClassLoader@548c4f57, 
org.netbeans.JarClassLoader@51b792e4, 
ModuleCL@2fc20da6[org.netbeans.api.annotations.common], 
ModuleCL@26208c8[org.openide.awt], 
ModuleCL@5e828cc4[org.netbeans.api.progress], 
ModuleCL@1d699f6[org.netbeans.api.progress.nb], 
ModuleCL@3e460b57[org.openide.dialogs], ModuleCL@2c70601f[org.openide.nodes], 
ModuleCL@66de2df9[org.openide.windows], 
ModuleCL@537211fd[org.netbeans.modules.editor.mimelookup], ...532 more]
 at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)
 at 
org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:769)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
 at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:477)
 at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:123)
 at 
org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1347)
 at 
org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:784)
[catch] at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:644)
 at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)
 at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.createCategory(ProjectCustomizer.java:686)
 at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:637)
 at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)
 at 
org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)
 at 
org.netbeans.modules.gradle.customizer.GradleCustomizerProvider$1.run(GradleCustomizerProvider.java:84)
 at 
org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)
 at 
org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)
 at 
org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)
 at org.openide.util.Mutex.readAccess(Mutex.java:235)
 at 
org.netbeans.modules.gradle.customizer.GradleCustomizerProvider.showCustomizer(GradleCustomizerProvider.java:78)
 at 
org.netbeans.modules.gradle.customizer.GradleCustomizerProvider.showCustomizer(GradleCustomizerProvider.java:105)
 at 
org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)
 at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
 at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
 at java.awt.EventQueue.access$500(EventQueue.java:97)
 at java.awt.EventQueue$3.run(EventQueue.java:709)
 at java.awt.EventQueue$3.run(EventQueue.java:703)
 at java.security.AccessController.doPrivileged(Native Method)
 at 
java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
 at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
 at 
org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136)
 at 
java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
 at 
java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
 at 
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
 at java.awt.EventDispatchThr

[jira] [Created] (NETBEANS-2753) NPE while running Junit5 tests via built-in gradle support

2019-06-26 Thread Travis (JIRA)
Travis created NETBEANS-2753:


 Summary: NPE while running Junit5 tests via built-in gradle support
 Key: NETBEANS-2753
 URL: https://issues.apache.org/jira/browse/NETBEANS-2753
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
Affects Versions: 11.1
 Environment: Windows 10
Oracle JDK 8
Netbeans 11.1 beta 2
JUnit 5.4
Gradle 5.2
Reporter: Travis
Assignee: Laszlo Kishalmi


I tested Netbeans 11.1 beta 2 on my large multi-project Gradle build.  One of 
the issues I found is that while running tests, I got a notification from 
Netbeans with this exception.  This did not prevent tests from finishing with 
correct results.  However, I think maybe it caused text to stop printing in the 
"output" pane prior to the end of the run?

 

java.lang.NullPointerException
 at org.netbeans.core.output2.OutWriter.print(OutWriter.java:573)
 at org.netbeans.core.output2.NbIO$IOColorPrintImpl.print(NbIO.java:546)
 at org.openide.windows.IOColorPrint.print(IOColorPrint.java:85)
 at 
org.netbeans.modules.gradle.execute.GradlePlainEscapeProcessor$IODisplayer.doPrint(GradlePlainEscapeProcessor.java:130)
 at 
org.netbeans.modules.gradle.api.output.OutputDisplayer.print(OutputDisplayer.java:41)
 at 
org.netbeans.modules.gradle.java.output.JavaCompilerProcessorFactory$StackTraceProcessor.processLine(JavaCompilerProcessorFactory.java:98)
 at 
org.netbeans.modules.gradle.execute.GradlePlainEscapeProcessor.processText(GradlePlainEscapeProcessor.java:94)
 at 
org.netbeans.modules.gradle.execute.EscapeProcessingOutputStream.processBulk(EscapeProcessingOutputStream.java:107)
 at 
org.netbeans.modules.gradle.execute.EscapeProcessingOutputStream.write(EscapeProcessingOutputStream.java:66)
 at java.io.OutputStream.write(OutputStream.java:116)
 at sun.nio.cs.StreamEncoder.writeBytes(StreamEncoder.java:221)
 at sun.nio.cs.StreamEncoder.implFlushBuffer(StreamEncoder.java:291)
 at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:295)
 at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141)
 at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229)
 at 
org.gradle.internal.logging.text.StreamBackedStandardOutputListener.onOutput(StreamBackedStandardOutputListener.java:47)
 at 
org.gradle.internal.logging.text.StreamingStyledTextOutput.doAppend(StreamingStyledTextOutput.java:55)
 at 
org.gradle.internal.logging.text.AbstractStyledTextOutput.text(AbstractStyledTextOutput.java:73)
 at 
org.gradle.internal.logging.console.StyledTextOutputBackedRenderer$OutputEventTextOutputImpl.doEndLine(StyledTextOutputBackedRenderer.java:93)
 at 
org.gradle.internal.logging.text.AbstractLineChoppingStyledTextOutput$StateContext.flushEndLine(AbstractLineChoppingStyledTextOutput.java:132)
 at 
org.gradle.internal.logging.text.AbstractLineChoppingStyledTextOutput$3.execute(AbstractLineChoppingStyledTextOutput.java:193)
 at 
org.gradle.internal.logging.text.AbstractLineChoppingStyledTextOutput$3.execute(AbstractLineChoppingStyledTextOutput.java:188)
 at 
org.gradle.internal.logging.text.AbstractLineChoppingStyledTextOutput.doAppend(AbstractLineChoppingStyledTextOutput.java:41)
 at 
org.gradle.internal.logging.text.AbstractStyledTextOutput.text(AbstractStyledTextOutput.java:73)
 at 
org.gradle.internal.logging.text.AbstractStyledTextOutput.println(AbstractStyledTextOutput.java:68)
 at org.gradle.internal.logging.events.LogEvent.render(LogEvent.java:53)
 at 
org.gradle.internal.logging.console.StyledTextOutputBackedRenderer.onOutput(StyledTextOutputBackedRenderer.java:66)
 at 
org.gradle.internal.logging.sink.ErrorOutputDispatchingListener.onOutput(ErrorOutputDispatchingListener.java:38)
 at 
org.gradle.internal.logging.sink.GroupingProgressLogEventGenerator$OperationGroup.flushOutput(GroupingProgressLogEventGenerator.java:229)
 at 
org.gradle.internal.logging.sink.GroupingProgressLogEventGenerator$OperationGroup.maybeFlushOutput(GroupingProgressLogEventGenerator.java:251)
 at 
org.gradle.internal.logging.sink.GroupingProgressLogEventGenerator.onUpdateNow(GroupingProgressLogEventGenerator.java:134)
 at 
org.gradle.internal.logging.sink.GroupingProgressLogEventGenerator.onOutput(GroupingProgressLogEventGenerator.java:79)
 at 
org.gradle.internal.logging.console.BuildLogLevelFilterRenderer.onOutput(BuildLogLevelFilterRenderer.java:41)
 at 
org.gradle.internal.logging.console.AbstractUserInputRenderer.onOutput(AbstractUserInputRenderer.java:56)
 at 
org.gradle.internal.logging.console.ThrottlingOutputEventListener.renderNow(ThrottlingOutputEventListener.java:93)
 at 
org.gradle.internal.logging.console.ThrottlingOutputEventListener.onOutput(ThrottlingOutputEventListener.java:83)
 at 
org.gradle.internal.logging.sink.OutputEventRenderer.removeChain(OutputEventRenderer.java:120)
 at 
org.gradle.internal.logging.sink.OutputEventRenderer.restore(OutputEventRenderer.java:104)
 at 
org.gradle.internal.logging

[jira] [Commented] (NETBEANS-2750) Error while developing a website with laravel - cannot type {{ }}

2019-06-26 Thread Junichi Yamamoto (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873707#comment-16873707
 ] 

Junichi Yamamoto commented on NETBEANS-2750:


Workaround: Please try deactivating the AngularJS Editor.

> Error while developing a website with laravel - cannot type {{ }}
> -
>
> Key: NETBEANS-2750
> URL: https://issues.apache.org/jira/browse/NETBEANS-2750
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2
>Reporter: Rosalinda Mila de la Roca
>Priority: Major
>
> Product Version = NetBeans IDE 8.2 (Build 201609300101)
> Operating System = Windows 10 version 10.0 running on amd64
> Java; VM; Vendor = 1.8.0_101
> Runtime = Java HotSpot(TM) 64-Bit Server VM 25.101-b13
> STEPS:
>  * Developing a website with Laravel 5.8, PHP 7.3.5 and WAMP 3.1.9. Just 
> typing curly brackets like this --> \{{ }} to insert variables but I was not 
> able to complete this. I had to copy and paste from other piece of code to be 
> able to have both curly brackets. The error started happening yesterday at 
> night.
> ACTUAL:
>  Not able to type curly brackets in some parts of the code. I have to close 
> the IDE and open it again and sometimes that do not solve the problem. By 
> copying and pasting another piece of code and then editing it, solves my 
> problem at the moment.
> EXPECTED:
>  To type code normally as always.
> 
> ---
> >Log Session: Wednesday, June 26, 2019 10:22:25 AM MDT
> >System Info: 
>  Product Version = NetBeans IDE 8.2 (Build 201609300101) (#5fd841261bf9)
>  Operating System = Windows 10 version 10.0 running on amd64
>  Java; VM; Vendor = 1.8.0_101; Java HotSpot(TM) 64-Bit Server VM 25.101-b13; 
> Oracle Corporation
>  Runtime = Java(TM) SE Runtime Environment 1.8.0_101-b13
>  Java Home = C:\Program Files\NetBeans 8.2\bin\jre
>  System Locale; Encoding = en_US (nb); Cp1252
>  Home Directory = C:\Users\Pichimaguida
>  Current Directory = C:\Program Files\NetBeans 8.2
>  User Directory = C:\Users\Pichimaguida\AppData\Roaming\NetBeans\8.2
>  Cache Directory = C:\Users\Pichimaguida\AppData\Local\NetBeans\Cache\8.2
>  Installation = C:\Program Files\NetBeans 8.2\nb
>  C:\Program Files\NetBeans 8.2\ide
>  C:\Program Files\NetBeans 8.2\extide
>  C:\Program Files\NetBeans 8.2\java
>  C:\Program Files\NetBeans 8.2\webcommon
>  C:\Program Files\NetBeans 8.2\websvccommon
>  C:\Program Files\NetBeans 8.2\php
>  C:\Program Files\NetBeans 8.2\harness
>  C:\Program Files\NetBeans 8.2\platform
>  Boot & Ext. Classpath = C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\resources.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\rt.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\sunrsasign.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\jsse.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\jce.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\charsets.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\jfr.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\classes;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\access-bridge-64.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\cldrdata.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\dnsns.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\jaccess.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\jfxrt.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\localedata.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\nashorn.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\sunec.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\sunjce_provider.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\sunmscapi.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\sunpkcs11.jar;C:\Program Files\NetBeans 
> 8.2\bin\jre\lib\ext\zipfs.jar
>  Application Classpath = C:\Program Files\NetBeans 
> 8.2\platform\lib\boot.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\org-openide-modules.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\org-openide-util-lookup.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\org-openide-util-ui.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\org-openide-util.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\boot_ja.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\boot_pt_BR.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\boot_ru.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\boot_zh_CN.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\org-openide-modules_ja.jar;C:\Program Files\NetBeans 
> 8.2\platform\lib\locale\org-openide-modules_pt_BR.jar;C:\Program 
> Files\NetBeans 8.2\platform\lib\locale\org-openide-modules_ru.jar;C:\Program 
> Files\NetBeans 
> 8.2\platform\lib\locale\org-openide-modules_zh_CN.jar;C:\Program 
> Files\NetBeans 
> 8.2\platform\li

[jira] [Updated] (NETBEANS-544) Merge conflicts resolver doesn't recognize "|||||||" conflict markers

2019-06-26 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-544:

Labels: pull-request-available  (was: )

> Merge conflicts resolver doesn't recognize "|||" conflict markers
> -
>
> Key: NETBEANS-544
> URL: https://issues.apache.org/jira/browse/NETBEANS-544
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Subversion
>Reporter: Niklas Matthies
>Assignee: Aaron Ho-Means
>Priority: Major
>  Labels: pull-request-available
>
> When an update creates a conflict, a merge conflict involving three versions 
> of the file looks like this:
> {quote}{{<<< .mine}}
> {{lines from local file}}
> {{||| .r1}}
> {{lines from revision 1}}
> {{===}}
> {{lines from revision 2}}
> {{>>> .r2}}
> {quote}
> The Merge Conflicts Resolver (menu Team > Resolve Conflicts...) does not 
> recognize "|||" lines and doesn't filter them out in the "Local Working 
> File" pane. When accepting the local version, the "|||{{"}} lines 
> therefore end up in the merged result, as shown in the "Result after merge" 
> pane, and also in the actual file after saving. They have to be removed 
> manually then, or may remain unnoticed and be accidentally commited.
> I only tested this with the JavaHL subversion client so far, but suspect that 
> this bug is independent of the client.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Comment Edited] (NETBEANS-2617) Redraw common icons in SVG

2019-06-26 Thread Eirik Bakke (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2617?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873624#comment-16873624
 ] 

Eirik Bakke edited comment on NETBEANS-2617 at 6/26/19 7:43 PM:


Thanks for the icons, Pete! Looks good. For now, if you want to add more icons, 
feel free to add them to the same Illustrator file as you used before, 
replacing the attachment you uploaded here with a new version of the file. At 
some point, after the NetBeans SVG loading support pull request is merged, I 
can go through these and generate the SVG files and get them integrated.

I see you have also named the Illustrator artboards according to the name of 
the original icon--that's great. And you have one illustrator file per module, 
that also works great. (If it ends up being pain, it would be OK with me to 
have one Illustrator file per contributor. Though maybe per-module is a good 
way to split up the work, as you did here.)


was (Author: ebakke):
Thanks for the icons, Pete! Looks good. For now, if you want to add more icons, 
feel free to add them to the same Illustrator file as you used before, 
replacing the attachment you uploaded here with a new version of the file. At 
some point, after the NetBeans SVG loading support pull request is merged, I 
can go through these and generate the SVG files and get them integrated.

I see you have also named the Illustrator artboards according to the name of 
the original icon--that's great. And you have one illustrator file per 
module--that also works great. (Though if it ends up being pain, it would be OK 
with me to have one Illustrator file per contributor--though maybe per-module 
is a good way to split up the work.)

> Redraw common icons in SVG
> --
>
> Key: NETBEANS-2617
> URL: https://issues.apache.org/jira/browse/NETBEANS-2617
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.0
> Environment: Windows, Linux, and MacOS
>Reporter: Eirik Bakke
>Priority: Major
>  Labels: HiDPI
> Attachments: ide.editor.bookmarks.ai, ide.editor.macros.ai, 
> ide.seperator.breadcrumbs.ai, netbeans_icons_illustrator_template.ai, style 
> example.png
>
>
> Once NETBEANS-2604 is done, we should start replacing commonly seen NetBeans 
> icons with SVG versions, for improved appearance on Retina/HiDPI displays.
> With some practice, it takes on average 30 minutes to create an SVG version 
> of a typical icon in Adobe Illustrator. See the attached illustration and 
> Illustrator template. The Illustrator template includes a few icons which 
> have already been converted.
> In NETBEANS-2605, the following prioritized list of icons to convert was 
> produced:
> https://people.csail.mit.edu/ebakke/misc/netbeans-icons/prioritized.html
> By redrawing the most commonly seen icons first, we can get the greatest 
> "bang for the buck" in terms of improving NetBeans' appearance on HiDPI 
> displays. Note that in cases where an icon file has been copied around to 
> various places in the NetBeans codebase, only one of the paths is shown in 
> the list above.
> See also the overview page for HiDPI improvements on 
> https://cwiki.apache.org/confluence/display/NETBEANS/HiDPI+%28Retina%29+improvements
>  .
> h2. Proposed Style Guide for Vectorized Icons
> * Vector icons should be drawn in Adobe Illustrator. Each icon should be one 
> named artboard, sized to the correct size in pixels. See the attached 
> Illustrator template. (Adobe Illustrator comes with a free 7-day trial, after 
> which it's $35/month. If cost is a problem but you want to contribute your 
> time to draw icons, ask Eirik...)
> * For each icon to be vectorized, place the old bitmap version of the icon in 
> the "Old Bitmap Icons" layer in Illustrator. You can then draw the vectorized 
> version on top.
> * Since most of the existing NetBeans icons follow a quite consistent visual 
> style, and to simplify the job of creating new icons, it is best to keep the 
> shape of the new vectorized icons the same as in the old bitmap icons. For 
> instance, a rectangle of size 5x4px in the bitmap icon should probably become 
> a rectangle of 5x4px in the vector version.
> * Keep the same general colors in vectorized icons as in the corresponding 
> old bitmap icons. (The color scheme is not too hard to change later, but we 
> should do this only once most of the IDE icons have been vectorized.)
> * If the old bitmap icon is complex, it is fine to simplify it a bit when 
> drawing vectorized versions.
> * Omit gradients, bevels, and unnecessary drop shadows. They take more time 
> to draw, and with "flat design", they are now out of fashion in any case.
> * Use a stroke width of 1px around the main shapes in the icon, like in the 
> existi

[jira] [Commented] (NETBEANS-2617) Redraw common icons in SVG

2019-06-26 Thread Eirik Bakke (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2617?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873624#comment-16873624
 ] 

Eirik Bakke commented on NETBEANS-2617:
---

Thanks for the icons, Pete! Looks good. For now, if you want to add more icons, 
feel free to add them to the same Illustrator file as you used before, 
replacing the attachment you uploaded here with a new version of the file. At 
some point, after the NetBeans SVG loading support pull request is merged, I 
can go through these and generate the SVG files and get them integrated.

I see you have also named the Illustrator artboards according to the name of 
the original icon--that's great. And you have one illustrator file per 
module--that also works great. (Though if it ends up being pain, it would be OK 
with me to have one Illustrator file per contributor--though maybe per-module 
is a good way to split up the work.)

> Redraw common icons in SVG
> --
>
> Key: NETBEANS-2617
> URL: https://issues.apache.org/jira/browse/NETBEANS-2617
> Project: NetBeans
>  Issue Type: Improvement
>  Components: platform - Other
>Affects Versions: 11.0
> Environment: Windows, Linux, and MacOS
>Reporter: Eirik Bakke
>Priority: Major
>  Labels: HiDPI
> Attachments: ide.editor.bookmarks.ai, ide.editor.macros.ai, 
> ide.seperator.breadcrumbs.ai, netbeans_icons_illustrator_template.ai, style 
> example.png
>
>
> Once NETBEANS-2604 is done, we should start replacing commonly seen NetBeans 
> icons with SVG versions, for improved appearance on Retina/HiDPI displays.
> With some practice, it takes on average 30 minutes to create an SVG version 
> of a typical icon in Adobe Illustrator. See the attached illustration and 
> Illustrator template. The Illustrator template includes a few icons which 
> have already been converted.
> In NETBEANS-2605, the following prioritized list of icons to convert was 
> produced:
> https://people.csail.mit.edu/ebakke/misc/netbeans-icons/prioritized.html
> By redrawing the most commonly seen icons first, we can get the greatest 
> "bang for the buck" in terms of improving NetBeans' appearance on HiDPI 
> displays. Note that in cases where an icon file has been copied around to 
> various places in the NetBeans codebase, only one of the paths is shown in 
> the list above.
> See also the overview page for HiDPI improvements on 
> https://cwiki.apache.org/confluence/display/NETBEANS/HiDPI+%28Retina%29+improvements
>  .
> h2. Proposed Style Guide for Vectorized Icons
> * Vector icons should be drawn in Adobe Illustrator. Each icon should be one 
> named artboard, sized to the correct size in pixels. See the attached 
> Illustrator template. (Adobe Illustrator comes with a free 7-day trial, after 
> which it's $35/month. If cost is a problem but you want to contribute your 
> time to draw icons, ask Eirik...)
> * For each icon to be vectorized, place the old bitmap version of the icon in 
> the "Old Bitmap Icons" layer in Illustrator. You can then draw the vectorized 
> version on top.
> * Since most of the existing NetBeans icons follow a quite consistent visual 
> style, and to simplify the job of creating new icons, it is best to keep the 
> shape of the new vectorized icons the same as in the old bitmap icons. For 
> instance, a rectangle of size 5x4px in the bitmap icon should probably become 
> a rectangle of 5x4px in the vector version.
> * Keep the same general colors in vectorized icons as in the corresponding 
> old bitmap icons. (The color scheme is not too hard to change later, but we 
> should do this only once most of the IDE icons have been vectorized.)
> * If the old bitmap icon is complex, it is fine to simplify it a bit when 
> drawing vectorized versions.
> * Omit gradients, bevels, and unnecessary drop shadows. They take more time 
> to draw, and with "flat design", they are now out of fashion in any case.
> * Use a stroke width of 1px around the main shapes in the icon, like in the 
> existing bitmap icons. The new icons should look consistent with the existing 
> bitmap icons, especially since we may see bitmap icons and vector icons 
> side-by-side for a long time. Within shapes, 0.5px strokes can be used for 
> finer details.
> * The 1px strokes that outline the icon's shapes should typically be 33% 
> transparent black on top of the shape's background color, or of similar 
> darkness. See the examples in the attached "style example.png" file.
> * Horizontal and vertical strokes must be aligned to the pixel grid.
> * While it may sometimes be necessary to "outline" strokes for the purposes 
> of applying boolean operations (e.g. subtracting another shape from the 
> stroke only), strokes should be left as strokes whenever possible, as this 
> leads to smaller SVG files, and makes shapes

[jira] [Commented] (NETBEANS-2289) Groovy related exception

2019-06-26 Thread Eric Schwarzenbach (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873615#comment-16873615
 ] 

Eric Schwarzenbach commented on NETBEANS-2289:
--

I just tried it: I don't get the error using 11.1 beta-2. Thanks, Geertjan.

> Groovy related exception
> 
>
> Key: NETBEANS-2289
> URL: https://issues.apache.org/jira/browse/NETBEANS-2289
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Editor
>Affects Versions: 11.0
>Reporter: Aldo Brucale
>Priority: Minor
>
> I got this exception while working in Java with NetBeans 11.0-vc4 (no Groovy 
> involved)
> {noformat}
> java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage
>   at 
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
>   at 
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)
> Caused: java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage starting from 
> SystemClassLoader[529 modules] with possible defining loaders null and 
> declared parents [org.netbeans.MainImpl$BootClassLoader@4dd8dc3, 
> org.netbeans.JarClassLoader@46ca4b09, 
> ModuleCL@5170700[org.netbeans.api.annotations.common], 
> ModuleCL@7ffd4274[org.openide.awt], 
> ModuleCL@4c04eb3f[org.netbeans.api.progress], 
> ModuleCL@25efd3fa[org.netbeans.api.progress.nb], 
> ModuleCL@18fdef40[org.openide.dialogs], ModuleCL@d86f0c9[org.openide.nodes], 
> ModuleCL@66b0bf55[org.openide.windows], 
> ModuleCL@3d1bc07a[org.netbeans.modules.editor.mimelookup], ...504 more]
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)
>   at 
> org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:769)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at 
> org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:477)
>   at 
> org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:123)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1347)
>   at 
> org.openide.loaders.InstanceSupport.instanceCreate(InstanceSupport.java:189)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1417)
>   at 
> org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:821)
> [catch] at 
> org.netbeans.modules.csl.spi.DefaultDataLoadersBridge.createInstance(DefaultDataLoadersBridge.java:120)
>   at 
> org.netbeans.modules.csl.core.Language.createInstance(Language.java:284)
>   at 
> org.netbeans.modules.csl.core.Language.getGsfLanguage(Language.java:223)
>   at 
> org.netbeans.modules.csl.core.Language.getIndexSearcher(Language.java:692)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider.compute(TypeAndSymbolProvider.java:152)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider$TypeProviderImpl.computeTypeNames(TypeAndSymbolProvider.java:75)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.getTypeNames(GoToTypeAction.java:614)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.run(GoToTypeAction.java:522)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2752) java.lang.IllegalStateException: JsIndexer.postScanTask on startup

2019-06-26 Thread Eric Schwarzenbach (JIRA)
Eric Schwarzenbach created NETBEANS-2752:


 Summary: java.lang.IllegalStateException: JsIndexer.postScanTask 
on startup
 Key: NETBEANS-2752
 URL: https://issues.apache.org/jira/browse/NETBEANS-2752
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
 Environment: Java: 11.0.2; OpenJDK 64-Bit Server VM 11.0.2+9

Runtime: OpenJDK Runtime Environment 11.0.2+9

System: Linux version 4.19.26-1-CHAKRA running on amd64; UTF-8; en_US (nb)
Reporter: Eric Schwarzenbach


Using 11.1 beta 2
 
{{java.lang.IllegalStateException: JsIndexer.postScanTask can be called only 
from scanner thread.}}
{{ at 
org.netbeans.modules.javascript2.editor.index.JsIndexer$Factory.addPostScanTask(JsIndexer.java:421)}}
{{ at 
org.netbeans.modules.javascript2.editor.index.JsIndexer$PostScanProvider.addPostScanTask(JsIndexer.java:456)}}
{{ at 
org.netbeans.modules.html.angular.index.AngularJsIndexer.index(AngularJsIndexer.java:163)}}
{{ at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$3.run(Indexable.java:225)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)}}
{{ at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:223)}}
{{[catch] at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$2.run(RepositoryUpdater.java:3209)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$2.run(RepositoryUpdater.java:3231)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$2.run(RepositoryUpdater.java:3231)}}
{{ at 
org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)}}
{{ at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:130)}}
{{ at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:114)}}
{{ at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)}}
{{ at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)}}
{{ at 
org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)}}
{{ at 
org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)}}
{{ at 
org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)}}
{{ at 
org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)}}
{{ at 
org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)}}
{{ at 
org.netbeans.modules.parsing.api.ParserManager.parse(ParserManager.java:81)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.indexEmbedding(RepositoryUpdater.java:3143)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RefreshEifIndices$1.call(RepositoryUpdater.java:4341)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RefreshEifIndices$1.call(RepositoryUpdater.java:4289)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)}}
{{ at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2104)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.access$1500(RepositoryUpdater.java:136)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RefreshEifIndices.getDone(RepositoryUpdater.java:4375)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doTheWork(RepositoryUpdater.java:3420)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task._run(RepositoryUpdater.java:6183)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task.access$4300(RepositoryUpdater.java:5834)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task$2$1.run(RepositoryUpdater.java:6099)}}
{{ at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)}}
{{ at 
org.netbeans.modules.parsing.impl.RunWhenScanFinishedSupport.performScan(RunWhenScanFinishedSupport.java:83)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task$2.call(RepositoryUpdater.java:6095)}}
{{ at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Task$2.call(RepositoryUpdater.java:6091)}}
{{ at 
org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)}}
{{ at 
org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)}}
{{ at 
org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)}}
{{ at 
org.netbeans.modules.parsing.impl.Utili

[jira] [Comment Edited] (NETBEANS-2289) Groovy related exception

2019-06-26 Thread Eric Schwarzenbach (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873598#comment-16873598
 ] 

Eric Schwarzenbach edited comment on NETBEANS-2289 at 6/26/19 7:14 PM:
---

I get the identical stacktrace as in the description when I open the "Go to 
type..." dialog from the Navigate menu. FWIW on

 
*Product Version:* Apache NetBeans IDE 11.0 (Build 
incubator-netbeans-release-404-on-20190319)

*Java:* 11.0.2; OpenJDK 64-Bit Server VM 11.0.2+9


was (Author: ericjs):
I get this identical stacktrace when I open the "Go to type..." dialog from the 
Navigate menu.

> Groovy related exception
> 
>
> Key: NETBEANS-2289
> URL: https://issues.apache.org/jira/browse/NETBEANS-2289
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Editor
>Affects Versions: 11.0
>Reporter: Aldo Brucale
>Priority: Minor
>
> I got this exception while working in Java with NetBeans 11.0-vc4 (no Groovy 
> involved)
> {noformat}
> java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage
>   at 
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
>   at 
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)
> Caused: java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage starting from 
> SystemClassLoader[529 modules] with possible defining loaders null and 
> declared parents [org.netbeans.MainImpl$BootClassLoader@4dd8dc3, 
> org.netbeans.JarClassLoader@46ca4b09, 
> ModuleCL@5170700[org.netbeans.api.annotations.common], 
> ModuleCL@7ffd4274[org.openide.awt], 
> ModuleCL@4c04eb3f[org.netbeans.api.progress], 
> ModuleCL@25efd3fa[org.netbeans.api.progress.nb], 
> ModuleCL@18fdef40[org.openide.dialogs], ModuleCL@d86f0c9[org.openide.nodes], 
> ModuleCL@66b0bf55[org.openide.windows], 
> ModuleCL@3d1bc07a[org.netbeans.modules.editor.mimelookup], ...504 more]
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)
>   at 
> org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:769)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at 
> org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:477)
>   at 
> org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:123)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1347)
>   at 
> org.openide.loaders.InstanceSupport.instanceCreate(InstanceSupport.java:189)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1417)
>   at 
> org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:821)
> [catch] at 
> org.netbeans.modules.csl.spi.DefaultDataLoadersBridge.createInstance(DefaultDataLoadersBridge.java:120)
>   at 
> org.netbeans.modules.csl.core.Language.createInstance(Language.java:284)
>   at 
> org.netbeans.modules.csl.core.Language.getGsfLanguage(Language.java:223)
>   at 
> org.netbeans.modules.csl.core.Language.getIndexSearcher(Language.java:692)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider.compute(TypeAndSymbolProvider.java:152)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider$TypeProviderImpl.computeTypeNames(TypeAndSymbolProvider.java:75)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.getTypeNames(GoToTypeAction.java:614)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.run(GoToTypeAction.java:522)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2289) Groovy related exception

2019-06-26 Thread Geertjan Wielenga (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873599#comment-16873599
 ] 

Geertjan Wielenga commented on NETBEANS-2289:
-

Can you try 11.1 beta-2:

https://lists.apache.org/thread.html/40b4c5db69cb64e62def5f3b1655b7814208d79e59a2e9657e2d5486@%3Cdev.netbeans.apache.org%3E

> Groovy related exception
> 
>
> Key: NETBEANS-2289
> URL: https://issues.apache.org/jira/browse/NETBEANS-2289
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Editor
>Affects Versions: 11.0
>Reporter: Aldo Brucale
>Priority: Minor
>
> I got this exception while working in Java with NetBeans 11.0-vc4 (no Groovy 
> involved)
> {noformat}
> java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage
>   at 
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
>   at 
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)
> Caused: java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage starting from 
> SystemClassLoader[529 modules] with possible defining loaders null and 
> declared parents [org.netbeans.MainImpl$BootClassLoader@4dd8dc3, 
> org.netbeans.JarClassLoader@46ca4b09, 
> ModuleCL@5170700[org.netbeans.api.annotations.common], 
> ModuleCL@7ffd4274[org.openide.awt], 
> ModuleCL@4c04eb3f[org.netbeans.api.progress], 
> ModuleCL@25efd3fa[org.netbeans.api.progress.nb], 
> ModuleCL@18fdef40[org.openide.dialogs], ModuleCL@d86f0c9[org.openide.nodes], 
> ModuleCL@66b0bf55[org.openide.windows], 
> ModuleCL@3d1bc07a[org.netbeans.modules.editor.mimelookup], ...504 more]
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)
>   at 
> org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:769)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at 
> org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:477)
>   at 
> org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:123)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1347)
>   at 
> org.openide.loaders.InstanceSupport.instanceCreate(InstanceSupport.java:189)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1417)
>   at 
> org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:821)
> [catch] at 
> org.netbeans.modules.csl.spi.DefaultDataLoadersBridge.createInstance(DefaultDataLoadersBridge.java:120)
>   at 
> org.netbeans.modules.csl.core.Language.createInstance(Language.java:284)
>   at 
> org.netbeans.modules.csl.core.Language.getGsfLanguage(Language.java:223)
>   at 
> org.netbeans.modules.csl.core.Language.getIndexSearcher(Language.java:692)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider.compute(TypeAndSymbolProvider.java:152)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider$TypeProviderImpl.computeTypeNames(TypeAndSymbolProvider.java:75)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.getTypeNames(GoToTypeAction.java:614)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.run(GoToTypeAction.java:522)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Commented] (NETBEANS-2289) Groovy related exception

2019-06-26 Thread Eric Schwarzenbach (JIRA)


[ 
https://issues.apache.org/jira/browse/NETBEANS-2289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873598#comment-16873598
 ] 

Eric Schwarzenbach commented on NETBEANS-2289:
--

I get this identical stacktrace when I open the "Go to type..." dialog from the 
Navigate menu.

> Groovy related exception
> 
>
> Key: NETBEANS-2289
> URL: https://issues.apache.org/jira/browse/NETBEANS-2289
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Editor
>Affects Versions: 11.0
>Reporter: Aldo Brucale
>Priority: Minor
>
> I got this exception while working in Java with NetBeans 11.0-vc4 (no Groovy 
> involved)
> {noformat}
> java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage
>   at 
> java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
>   at 
> java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)
> Caused: java.lang.ClassNotFoundException: 
> org.netbeans.modules.groovy.editor.api.parser.GroovyLanguage starting from 
> SystemClassLoader[529 modules] with possible defining loaders null and 
> declared parents [org.netbeans.MainImpl$BootClassLoader@4dd8dc3, 
> org.netbeans.JarClassLoader@46ca4b09, 
> ModuleCL@5170700[org.netbeans.api.annotations.common], 
> ModuleCL@7ffd4274[org.openide.awt], 
> ModuleCL@4c04eb3f[org.netbeans.api.progress], 
> ModuleCL@25efd3fa[org.netbeans.api.progress.nb], 
> ModuleCL@18fdef40[org.openide.dialogs], ModuleCL@d86f0c9[org.openide.nodes], 
> ModuleCL@66b0bf55[org.openide.windows], 
> ModuleCL@3d1bc07a[org.netbeans.modules.editor.mimelookup], ...504 more]
>   at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)
>   at 
> org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:769)
>   at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)
>   at 
> org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:477)
>   at 
> org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:123)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1347)
>   at 
> org.openide.loaders.InstanceSupport.instanceCreate(InstanceSupport.java:189)
>   at 
> org.openide.loaders.InstanceDataObject$Ser.instanceCreate(InstanceDataObject.java:1417)
>   at 
> org.openide.loaders.InstanceDataObject.instanceCreate(InstanceDataObject.java:821)
> [catch] at 
> org.netbeans.modules.csl.spi.DefaultDataLoadersBridge.createInstance(DefaultDataLoadersBridge.java:120)
>   at 
> org.netbeans.modules.csl.core.Language.createInstance(Language.java:284)
>   at 
> org.netbeans.modules.csl.core.Language.getGsfLanguage(Language.java:223)
>   at 
> org.netbeans.modules.csl.core.Language.getIndexSearcher(Language.java:692)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider.compute(TypeAndSymbolProvider.java:152)
>   at 
> org.netbeans.modules.csl.core.TypeAndSymbolProvider$TypeProviderImpl.computeTypeNames(TypeAndSymbolProvider.java:75)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.getTypeNames(GoToTypeAction.java:614)
>   at 
> org.netbeans.modules.jumpto.type.GoToTypeAction$Worker.run(GoToTypeAction.java:522)
>   at 
> org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>   at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>   at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
>   at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2751) openjfx.samples missing from cluster.properties

2019-06-26 Thread ASF GitHub Bot (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2751?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-2751:
-
Labels: pull-request-available  (was: )

> openjfx.samples missing from cluster.properties
> ---
>
> Key: NETBEANS-2751
> URL: https://issues.apache.org/jira/browse/NETBEANS-2751
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Geertjan Wielenga
>Priority: Major
>  Labels: pull-request-available
>
> The new module openjfx.samples is missing from cluster.properties, needed for 
> inclusion in 11.1.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch geertjanw-patch-8 created (now 79861cc)

2019-06-26 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch geertjanw-patch-8
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


  at 79861cc  [NETBEANS-2751] Include new openjfx.samples in 
cluster.properties

No new revisions were added by this update.


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2751) openjfx.samples missing from cluster.properties

2019-06-26 Thread Geertjan Wielenga (JIRA)
Geertjan Wielenga created NETBEANS-2751:
---

 Summary: openjfx.samples missing from cluster.properties
 Key: NETBEANS-2751
 URL: https://issues.apache.org/jira/browse/NETBEANS-2751
 Project: NetBeans
  Issue Type: Bug
Reporter: Geertjan Wielenga


The new module openjfx.samples is missing from cluster.properties, needed for 
inclusion in 11.1.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2750) Error while developing a website with laravel - cannot type {{ }}

2019-06-26 Thread Rosalinda Mila de la Roca (JIRA)
Rosalinda Mila de la Roca created NETBEANS-2750:
---

 Summary: Error while developing a website with laravel - cannot 
type {{ }}
 Key: NETBEANS-2750
 URL: https://issues.apache.org/jira/browse/NETBEANS-2750
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 8.2
Reporter: Rosalinda Mila de la Roca


Product Version = NetBeans IDE 8.2 (Build 201609300101)
Operating System = Windows 10 version 10.0 running on amd64
Java; VM; Vendor = 1.8.0_101
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.101-b13

STEPS:
 * Developing a website with Laravel 5.8, PHP 7.3.5 and WAMP 3.1.9. Just typing 
curly brackets like this --> \{{ }} to insert variables but I was not able to 
complete this. I had to copy and paste from other piece of code to be able to 
have both curly brackets. The error started happening yesterday at night.

ACTUAL:
 Not able to type curly brackets in some parts of the code. I have to close the 
IDE and open it again and sometimes that do not solve the problem. By copying 
and pasting another piece of code and then editing it, solves my problem at the 
moment.

EXPECTED:
 To type code normally as always.




---
>Log Session: Wednesday, June 26, 2019 10:22:25 AM MDT
>System Info: 
 Product Version = NetBeans IDE 8.2 (Build 201609300101) (#5fd841261bf9)
 Operating System = Windows 10 version 10.0 running on amd64
 Java; VM; Vendor = 1.8.0_101; Java HotSpot(TM) 64-Bit Server VM 25.101-b13; 
Oracle Corporation
 Runtime = Java(TM) SE Runtime Environment 1.8.0_101-b13
 Java Home = C:\Program Files\NetBeans 8.2\bin\jre
 System Locale; Encoding = en_US (nb); Cp1252
 Home Directory = C:\Users\Pichimaguida
 Current Directory = C:\Program Files\NetBeans 8.2
 User Directory = C:\Users\Pichimaguida\AppData\Roaming\NetBeans\8.2
 Cache Directory = C:\Users\Pichimaguida\AppData\Local\NetBeans\Cache\8.2
 Installation = C:\Program Files\NetBeans 8.2\nb
 C:\Program Files\NetBeans 8.2\ide
 C:\Program Files\NetBeans 8.2\extide
 C:\Program Files\NetBeans 8.2\java
 C:\Program Files\NetBeans 8.2\webcommon
 C:\Program Files\NetBeans 8.2\websvccommon
 C:\Program Files\NetBeans 8.2\php
 C:\Program Files\NetBeans 8.2\harness
 C:\Program Files\NetBeans 8.2\platform
 Boot & Ext. Classpath = C:\Program Files\NetBeans 
8.2\bin\jre\lib\resources.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\rt.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\sunrsasign.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\jsse.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\jce.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\charsets.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\jfr.jar;C:\Program Files\NetBeans 
8.2\bin\jre\classes;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\access-bridge-64.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\cldrdata.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\dnsns.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\jaccess.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\jfxrt.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\localedata.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\nashorn.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\sunec.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\sunjce_provider.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\sunmscapi.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\sunpkcs11.jar;C:\Program Files\NetBeans 
8.2\bin\jre\lib\ext\zipfs.jar
 Application Classpath = C:\Program Files\NetBeans 
8.2\platform\lib\boot.jar;C:\Program Files\NetBeans 
8.2\platform\lib\org-openide-modules.jar;C:\Program Files\NetBeans 
8.2\platform\lib\org-openide-util-lookup.jar;C:\Program Files\NetBeans 
8.2\platform\lib\org-openide-util-ui.jar;C:\Program Files\NetBeans 
8.2\platform\lib\org-openide-util.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\boot_ja.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\boot_pt_BR.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\boot_ru.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\boot_zh_CN.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\org-openide-modules_ja.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\org-openide-modules_pt_BR.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\org-openide-modules_ru.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\org-openide-modules_zh_CN.jar;C:\Program Files\NetBeans 
8.2\platform\lib\locale\org-openide-util-lookup_ja.jar;C:\Program 
Files\NetBeans 
8.2\platform\lib\locale\org-openide-util-lookup_pt_BR.jar;C:\Program 
Files\NetBeans 
8.2\platform\lib\locale\org-openide-util-lookup_ru.jar;C:\Program 
Files\NetBeans 
8.2\platform\lib\locale\org-openide-util-lookup_zh_CN.jar;C:\Program 
Files\NetBeans 8.2\platform\lib\locale\org-openide-util-ui_ja.jar;C:\Program 
Files\NetBeans 8.2\platform\lib\locale\org-openide-util-ui_pt_BR.jar;C:\Program 

[netbeans] branch release111 updated: Add back Third-party Libraries plugin center. (#1331)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch release111
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/release111 by this push:
 new f56623c  Add back Third-party Libraries plugin center. (#1331)
f56623c is described below

commit f56623c16cc2cbc4a381508562545b13de91437e
Author: Neil C Smith 
AuthorDate: Wed Jun 26 17:25:55 2019 +0100

Add back Third-party Libraries plugin center. (#1331)
---
 .../netbeans/modules/updatecenters/resources/Bundle.properties |  4 
 .../org/netbeans/modules/updatecenters/resources/mf-layer.xml  | 10 ++
 2 files changed, 14 insertions(+)

diff --git 
a/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/Bundle.properties
 
b/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/Bundle.properties
index c7dec18..024eecc 100644
--- 
a/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/Bundle.properties
+++ 
b/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/Bundle.properties
@@ -33,3 +33,7 @@ 
URL_Distribution=https://netbeans.apache.org/nb/updates/11.1/updates.xml.gz?{$ne
 URL_PluginPortal=https://netbeans.apache.org/nb/plugins/11.1/catalog.xml.gz
 #NOI18N
 
URL_82PluginPortal=http://updates.netbeans.org/netbeans/updates/8.2/uc/final/distribution/catalog.xml.gz
+
+3rdparty=Third Party Libraries
+#NOI18N
+URL_3rdparty=nbresloc:/org/netbeans/modules/updatecenters/resources/3rdparty-catalog.xml
diff --git 
a/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/mf-layer.xml
 
b/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/mf-layer.xml
index fc7cc33..de190a3 100644
--- 
a/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/mf-layer.xml
+++ 
b/nb/updatecenters/src/org/netbeans/modules/updatecenters/resources/mf-layer.xml
@@ -55,6 +55,16 @@
   
   
 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+

 



-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated: javadoc later

2019-06-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 74827c8  javadoc later
74827c8 is described below

commit 74827c8877a09f5559ad3692cfda2da35c465a6f
Author: Eric Barboni 
AuthorDate: Wed Jun 26 18:13:23 2019 +0200

javadoc later
---
 vars/asfMainNetBeansBuild.groovy | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index b51f94d..0337a84 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -160,7 +160,7 @@ def call(Map params = [:]) {

 //sh "ant -f build-platform-temp/build.xml 
build -Dcluster.config=platform -Ddo.build.windows.launchers=true"
 
-sh "ant -f build-release-temp/build.xml 
build-nbms build-source-zips generate-uc-catalog build-javadoc 
-Dcluster.config=release -Ddo.build.windows.launchers=true"
+sh "ant -f build-release-temp/build.xml 
build-nbms build-source-zips generate-uc-catalog -Dcluster.config=release 
-Ddo.build.windows.launchers=true"
 
 sh "rm -rf ${env.WORKSPACE}/dist"
 sh "mkdir ${env.WORKSPACE}/dist"
@@ -171,10 +171,9 @@ def call(Map params = [:]) {
 sh "mkdir ${env.WORKSPACE}/dist/nbms"
 sh "mkdir 
${env.WORKSPACE}/dist/mavenrepository"
 sh "cp -r 
${env.WORKSPACE}/build-release-temp/nbbuild/nbms/** ${env.WORKSPACE}/dist/nbms/"
-sh "cd ${env.WORKSPACE}/dist"
-sh 'for z in $(find . -name "*.zip") ; do 
sha512sum $z >$z.sha512 ; done'
-sh 'for z in $(find . -name "*.nbm") ; do 
sha512sum $z >$z.sha512 ; done'
-sh 'for z in $(find . -name "*.gz") ; do 
sha512sum $z >$z.sha512 ; done'
+sh "cd ${env.WORKSPACE}/dist"+' && for z in 
$(find . -name "*.zip") ; do sha512sum $z >$z.sha512 ; done'
+sh "cd ${env.WORKSPACE}/dist"+'for z in $(find 
. -name "*.nbm") ; do sha512sum $z >$z.sha512 ; done'
+sh "cd ${env.WORKSPACE}/dist"+'for z in $(find 
. -name "*.gz") ; do sha512sum $z >$z.sha512 ; done'
 
 sh "ant build-javadoc 
-Djavadoc.web.root='${apidocurl}' -Dmodules-javadoc-date='${date}' 
-Datom-date='${atomdate}' -Djavadoc.web.zip=${env.WORKSPACE}/WEBZIP.zip"
 archiveArtifacts 'dist/**'


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated: simplify script

2019-06-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 6cc934b  simplify script
6cc934b is described below

commit 6cc934b8eee64e7a77836c59b8d4ca97558ce6d2
Author: Eric Barboni 
AuthorDate: Wed Jun 26 16:36:56 2019 +0200

simplify script
---
 vars/asfMainNetBeansBuild.groovy | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 2396c4c..b51f94d 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -105,9 +105,8 @@ def call(Map params = [:]) {
 for (String target in targets){
 sh "rm -rf 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 sh "mkdir  
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
-sh "cd 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 sh "unzip 
${env.WORKSPACE}/nbbuild/build/${clusterconfig}*.zip -d 
${env.WORKSPACE}/${target}-${clusterconfig}-temp "
-sh "cp ${env.WORKSPACE}/.gitignore ."
+sh "cp ${env.WORKSPACE}/.gitignore 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 def add = "";
 if (target=="build") {
 add=" 
-Ddo.build.windows.launchers=true"


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch release111 updated (629cab8 -> c462a70)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a change to branch release111
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 629cab8  [NETBEANS-2688] Update the Snap descriptors for 11.1 (#1310)
 add 7e9cd40  [NETBEANS-1696] PHP 7.4 Support
 add 8ddb5f1  Fix FieldRedeclarationHintError
 add 7c0c98e  Merge pull request #1301 from 
junichi11/netbeans-1696-php7.4-support
 add 97da3c2  Revert "[NETBEANS-1696] PHP 7.4 Support: Typed Properties 2.0"
 add 2658ea4  Merge pull request #1306 from 
apache/revert-1301-netbeans-1696-php7.4-support
 add 66b9fdd  Listening on random port made possible with 
ListeningDICookie.create(-1)
 add 594bae9  Merge pull request #1303 from 
JaroslavTulach/ListenOnRandomPort
 add efba815  Fixed livelock in APTUtils happening for huge number of 
dependent projects.
 add 502c8c8  Merge pull request #1308 from tzezula/tzezula/apt_livelock
 add 5f7082f  [NETBEANS-2660] - Added javadoc for java 9, 10, 11, 12 & 13 
when addi… (#1299)
 add b12a64f  Support for per project platform for mx projects.
 add e59aa11  Support for per project platform for mx projects - apichanges.
 add 129776d  Merge pull request #1307 from tzezula/tzezula/mx_java_platform
 add 022de83  Test to verify that DownloadBinaries from tasks.jar is 
properly functional
 add 02b8d54  Adding missing ConfigureProxy class
 add 7500714  Removing unnecessary imports
 add 0c67f21  Merge pull request #1313 from 
JaroslavTulach/DownloadBinariesIsBroken
 add 3e7e6fe  Incorporating new files and code modifications for adding 
Java EE 8 support. (#1298)
 add f149137  NP-20 Payara Micro tools integration in Apache NetBeans IDE 
(#1297)
 add 6532336  Travis, Run ide modules tests
 add 2db2714  Merge pull request #1318 from blackleg/test_ide_modules
 add 4ca095c  Fixing typo in the virtual-text-prepend key. (#1316)
 add 385d2c9  When printing types, print intersection types properly. 
(#1315)
 add 8bc3f3e  [NETBEANS-2747] Apache NetBeans 11 shortcut card sources
 add cbc7532  Merge pull request #1326 from apache/geertjanw-patch-6
 add ed4c194  [NETBEANS-2747] Apache NetBeans 11 shortcut card PDF files
 add 45a7813  Merge pull request #1327 from apache/geertjanw-patch-7
 add b4f79ef  NP-20 Payara Server tools integration in Apache NetBeans IDE 
(#1290)
 new c462a70  Merge pull request #1330 from apache/master

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml|  103 +
 enterprise/glassfish.common/manifest.mf|2 +-
 .../modules/glassfish/common/Bundle.properties |3 +-
 .../common/GlassfishInstanceProvider.java  |6 +-
 .../modules/glassfish/common/ServerDetails.java|   33 +-
 .../common/registration/AutomaticRegistration.java |2 +
 .../glassfish/common/wizards/Bundle.properties |9 +
 .../common/wizards/GlassfishWizardProvider.java|   14 +
 .../modules/glassfish/spi/ServerUtilities.java |   12 +
 .../api/config/GlassfishConfiguration.java |3 +-
 .../glassfish/eecommon/api/config/J2EEVersion.java |   16 +
 .../javaee/AbstractHk2ConfigurationFactory.java|   18 +-
 .../modules/glassfish/javaee/Bundle.properties |2 +
 .../glassfish/javaee/Hk2DeploymentFactory.java |   34 +
 .../glassfish/javaee/Hk2JavaEEPlatformFactory.java |   21 +-
 .../glassfish/javaee/Hk2JavaEEPlatformImpl.java|7 +
 .../modules/glassfish/javaee/Hk2JaxWsStack.java|6 +-
 .../glassfish/javaee/Hk2OptionalFactory.java   |6 +
 .../modules/glassfish/javaee/ide/FastDeploy.java   |2 +-
 .../netbeans/modules/glassfish/javaee/layer.xml|   61 +
 .../netbeans/modules/glassfish/javaee/nbdepee8.xml |   54 +
 .../javaee/db/Hk2DatasourceManagerTest.java|2 +-
 enterprise/glassfish.tooling/manifest.mf   |2 +-
 .../glassfish/tooling/data/GlassFishVersion.java   |   23 +-
 .../server/config/ConfigBuilderProvider.java   |   17 +-
 .../tooling/server/config/GlassFishV5.xml  |  101 +
 .../tooling/server/config/GlassFishV5_1.xml|  101 +
 .../tooling/server/config/JavaEEProfile.java   |   12 +-
 .../AppClientProjectJAXWSClientSupport.java|4 +
 enterprise/j2ee.common/licenseinfo.xml |3 +
 enterprise/j2ee.common/manifest.mf |2 +-
 enterprise/j2ee.common/nbproject/project.xml   |1 +
 .../j2ee/common/J2eeProjectCapabilities.java   |   16 +-
 .../netbeans/modules/j2ee/common/dd/DDHelper.java  |   17 +-
 .../modules/j2ee/common/dd/resources/beans-2.0.xml |6 +
 .../modules/j2ee/common/dd/resources/web-4.0.xml   |   12 +
 .../j2ee/common/dd/resources/w

[netbeans] 01/01: Merge pull request #1330 from apache/master

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch release111
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit c462a700527816e53391b0882b1bcd4f34e17b52
Merge: 629cab8 b4f79ef
Author: Neil C Smith 
AuthorDate: Wed Jun 26 15:26:26 2019 +0100

Merge pull request #1330 from apache/master

Sync master to release branch for NB 11.1-beta2

 .travis.yml|  103 +
 enterprise/glassfish.common/manifest.mf|2 +-
 .../modules/glassfish/common/Bundle.properties |3 +-
 .../common/GlassfishInstanceProvider.java  |6 +-
 .../modules/glassfish/common/ServerDetails.java|   33 +-
 .../common/registration/AutomaticRegistration.java |2 +
 .../glassfish/common/wizards/Bundle.properties |9 +
 .../common/wizards/GlassfishWizardProvider.java|   14 +
 .../modules/glassfish/spi/ServerUtilities.java |   12 +
 .../api/config/GlassfishConfiguration.java |3 +-
 .../glassfish/eecommon/api/config/J2EEVersion.java |   16 +
 .../javaee/AbstractHk2ConfigurationFactory.java|   18 +-
 .../modules/glassfish/javaee/Bundle.properties |2 +
 .../glassfish/javaee/Hk2DeploymentFactory.java |   34 +
 .../glassfish/javaee/Hk2JavaEEPlatformFactory.java |   21 +-
 .../glassfish/javaee/Hk2JavaEEPlatformImpl.java|7 +
 .../modules/glassfish/javaee/Hk2JaxWsStack.java|6 +-
 .../glassfish/javaee/Hk2OptionalFactory.java   |6 +
 .../modules/glassfish/javaee/ide/FastDeploy.java   |2 +-
 .../netbeans/modules/glassfish/javaee/layer.xml|   61 +
 .../netbeans/modules/glassfish/javaee/nbdepee8.xml |   54 +
 .../javaee/db/Hk2DatasourceManagerTest.java|2 +-
 enterprise/glassfish.tooling/manifest.mf   |2 +-
 .../glassfish/tooling/data/GlassFishVersion.java   |   23 +-
 .../server/config/ConfigBuilderProvider.java   |   17 +-
 .../tooling/server/config/GlassFishV5.xml  |  101 +
 .../tooling/server/config/GlassFishV5_1.xml|  101 +
 .../tooling/server/config/JavaEEProfile.java   |   12 +-
 .../AppClientProjectJAXWSClientSupport.java|4 +
 enterprise/j2ee.common/licenseinfo.xml |3 +
 enterprise/j2ee.common/manifest.mf |2 +-
 enterprise/j2ee.common/nbproject/project.xml   |1 +
 .../j2ee/common/J2eeProjectCapabilities.java   |   16 +-
 .../netbeans/modules/j2ee/common/dd/DDHelper.java  |   17 +-
 .../modules/j2ee/common/dd/resources/beans-2.0.xml |6 +
 .../modules/j2ee/common/dd/resources/web-4.0.xml   |   12 +
 .../j2ee/common/dd/resources/web-fragment-4.0.xml  |8 +
 .../j2ee/common/J2eeProjectCapabilitiesTest.java   |   16 +
 enterprise/j2ee.core/manifest.mf   |2 +-
 .../org/netbeans/api/j2ee/core/Bundle.properties   |3 +-
 .../src/org/netbeans/api/j2ee/core/Profile.java|   32 +-
 .../org/netbeans/api/j2ee/core/ProfileTest.java|   13 +
 enterprise/j2ee.dd/licenseinfo.xml |   30 +-
 .../netbeans/modules/j2ee/dd/api/web/WebApp.java   |1 +
 .../modules/j2ee/dd/impl/resources/javaee_8.xsd| 3098 
 .../modules/j2ee/dd/impl/resources/web-app_4_0.xsd |  365 ++
 .../j2ee/ddloaders/catalog/EnterpriseCatalog.java  |5 +-
 enterprise/j2ee.ejbcore/manifest.mf|2 +-
 .../org/netbeans/modules/j2ee/ejbcore/Utils.java   |3 +-
 .../ejb/wizard/dd/EjbJarXmlWizardIterator.java |2 +-
 .../wizard/jpa/dao/AppServerValidationPanel.java   |3 +-
 .../ejb/wizard/jpa/dao/EjbFacadeVisualPanel2.java  |3 +-
 .../j2ee/ejbcore/ejb/wizard/mdb/MdbWizard.java |5 +-
 .../ejb/wizard/session/SessionEJBWizard.java   |3 +-
 .../logicalview/ejb/shared/EjbViewController.java  |4 +-
 enterprise/j2ee.ejbverification/manifest.mf|2 +-
 .../rules/PersistentTimerInEjbLite.java|2 +-
 enterprise/j2ee.kit/manifest.mf|2 +-
 enterprise/j2ee.kit/nbproject/project.xml  |6 +
 .../netbeans/test/j2ee/lib/J2eeProjectSupport.java |2 +-
 enterprise/j2ee.sun.dd/nbproject/project.xml   |2 +
 enterprise/j2ee.sun.ddui/nbproject/project.xml |   11 +
 enterprise/javaee.project/manifest.mf  |2 +-
 .../api/PersistenceProviderSupplierImpl.java   |2 +-
 .../project/api/ant/AntProjectConstants.java   |2 +
 .../api/ant/ui/wizard/J2eeVersionWarningPanel.java |   33 +
 .../api/ant/ui/wizard/ProjectServerPanel.java  |   14 +-
 .../javaee.specs.support/nbproject/project.xml |1 +
 enterprise/javaee8.api/build.xml   |   25 +
 enterprise/javaee8.api/external/binaries-list  |   30 +
 .../external/javaee-api-8.0-license.txt|  406 +++
 .../external/javaee-web-api-8.0-license.txt|  405 +++
 .../external/javax.annotation-api-1.2-license.txt  |  405 +++
 .../external/javax.batch-api-1.0.1-license.txt |  207 ++
 

[netbeans-jenkins-lib] branch master updated: clean build dir

2019-06-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new a05735b  clean build dir
a05735b is described below

commit a05735b91ebecb3f49f800937aed5b22c6b150f3
Author: Eric Barboni 
AuthorDate: Wed Jun 26 16:09:49 2019 +0200

clean build dir
---
 vars/asfMainNetBeansBuild.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index ad123a8..2396c4c 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -98,13 +98,15 @@ def call(Map params = [:]) {
 
 def clusterconfigs = ['platform','release']
 def targets = 
['verify-libs-and-licenses','rat','build']
+sh "rm -rf ${env.WORKSPACE}/nbbuild/build"
+
 for (String clusterconfig in clusterconfigs) {
 sh "ant build-source-config 
-Dcluster.config=${clusterconfig} 
-Dbuildnum=${env.BRANCH_NAME}_${env.BUILD_NUMBER}"
 for (String target in targets){
 sh "rm -rf 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 sh "mkdir  
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 sh "cd 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
-sh "unzip 
${env.WORKSPACE}/nbbuild/build/*${clusterconfig}*.zip"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/${clusterconfig}*.zip -d 
${env.WORKSPACE}/${target}-${clusterconfig}-temp "
 sh "cp ${env.WORKSPACE}/.gitignore ."
 def add = "";
 if (target=="build") {


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2685) Adjust Update Centers

2019-06-26 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2685?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jiří Kovalský updated NETBEANS-2685:

Affects Version/s: 11.1

> Adjust Update Centers
> -
>
> Key: NETBEANS-2685
> URL: https://issues.apache.org/jira/browse/NETBEANS-2685
> Project: NetBeans
>  Issue Type: Sub-task
>Affects Versions: 11.1
>Reporter: Neil C Smith
>Priority: Major
>
> The update centers needs to be updated to the upcoming release.
> See the linked PR how to do that.
> Thank you Jan!



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2672) Release NetBeans 11.1

2019-06-26 Thread JIRA


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2672?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jiří Kovalský updated NETBEANS-2672:

Affects Version/s: 11.1

> Release NetBeans 11.1
> -
>
> Key: NETBEANS-2672
> URL: https://issues.apache.org/jira/browse/NETBEANS-2672
> Project: NetBeans
>  Issue Type: Task
>Affects Versions: 11.1
>Reporter: Neil C Smith
>Assignee: Neil C Smith
>Priority: Blocker
> Fix For: 11.1
>
>
> This is the task of releasing Apache NetBeans 11.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated: add buildnum

2019-06-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 92940a1  add buildnum
92940a1 is described below

commit 92940a1f8f8abbe887011426db3ec7b0c8d1e47c
Author: Eric Barboni 
AuthorDate: Wed Jun 26 15:11:20 2019 +0200

add buildnum
---
 vars/asfMainNetBeansBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index 87ab4b1..ad123a8 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -99,7 +99,7 @@ def call(Map params = [:]) {
 def clusterconfigs = ['platform','release']
 def targets = 
['verify-libs-and-licenses','rat','build']
 for (String clusterconfig in clusterconfigs) {
-sh "ant build-source-config 
-Dcluster.config=${clusterconfig}"
+sh "ant build-source-config 
-Dcluster.config=${clusterconfig} 
-Dbuildnum=${env.BRANCH_NAME}_${env.BUILD_NUMBER}"
 for (String target in targets){
 sh "rm -rf 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
 sh "mkdir  
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
@@ -107,7 +107,7 @@ def call(Map params = [:]) {
 sh "unzip 
${env.WORKSPACE}/nbbuild/build/*${clusterconfig}*.zip"
 sh "cp ${env.WORKSPACE}/.gitignore ."
 def add = "";
-if (clusterconfig=="build") {
+if (target=="build") {
 add=" 
-Ddo.build.windows.launchers=true"
 }
 sh "ant -f 
${target}-${clusterconfig}-temp/build.xml ${target} 
-Dcluster.config=${clusterconfig} ${add}"


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans-jenkins-lib] branch master updated: try to mimic release and prepare for maven artifacts

2019-06-26 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
 new 8988ca6  try to mimic release and prepare for maven artifacts
8988ca6 is described below

commit 8988ca695a5aca829675ff22eb6b975a1c50ef32
Author: Eric Barboni 
AuthorDate: Wed Jun 26 14:18:41 2019 +0200

try to mimic release and prepare for maven artifacts
---
 vars/asfMainNetBeansBuild.groovy | 85 +++-
 1 file changed, 83 insertions(+), 2 deletions(-)

diff --git a/vars/asfMainNetBeansBuild.groovy b/vars/asfMainNetBeansBuild.groovy
index b50dbef..87ab4b1 100644
--- a/vars/asfMainNetBeansBuild.groovy
+++ b/vars/asfMainNetBeansBuild.groovy
@@ -28,7 +28,7 @@ def call(Map params = [:]) {
 def atomdate = ""
 def jdktool = ""
 def myMaven=""
-
+def version=""
 pipeline {
 options {
 buildDiscarder(logRotator(numToKeepStr: '2'))
@@ -68,7 +68,7 @@ def call(Map params = [:]) {
 atomdate = 
releaseInformation[env.BRANCH_NAME].releasedate['year']+'-'+releaseInformation[env.BRANCH_NAME].releasedate['month']+'-'+releaseInformation[env.BRANCH_NAME].releasedate['day']+'T12:00:00Z'
 jdktool = releaseInformation[env.BRANCH_NAME].jdk
 myMaven = releaseInformation[env.BRANCH_NAME].maven
- 
+version = 
releaseInformation[env.BRANCH_NAME].versionName;
 }
 }
 }
@@ -95,7 +95,88 @@ def call(Map params = [:]) {
 }
 
 } else {
+
+def clusterconfigs = ['platform','release']
+def targets = 
['verify-libs-and-licenses','rat','build']
+for (String clusterconfig in clusterconfigs) {
+sh "ant build-source-config 
-Dcluster.config=${clusterconfig}"
+for (String target in targets){
+sh "rm -rf 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
+sh "mkdir  
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
+sh "cd 
${env.WORKSPACE}/${target}-${clusterconfig}-temp"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/*${clusterconfig}*.zip"
+sh "cp ${env.WORKSPACE}/.gitignore ."
+def add = "";
+if (clusterconfig=="build") {
+add=" 
-Ddo.build.windows.launchers=true"
+}
+sh "ant -f 
${target}-${clusterconfig}-temp/build.xml ${target} 
-Dcluster.config=${clusterconfig} ${add}"
+}
+
+}
+
+//sh "ant build-source-config 
-Dcluster.config=release"
+
+
+   /* sh "rm -rf 
${env.WORKSPACE}/build-platform-temp"
+sh "mkdir ${env.WORKSPACE}/build-platform-temp"
+sh "cd ${env.WORKSPACE}/build-platform-temp"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/*platform*.zip"
+
+sh "rm -rf 
${env.WORKSPACE}/verify-platform-temp"
+sh "mkdir 
${env.WORKSPACE}/verify-platform-temp"
+sh "cd ${env.WORKSPACE}/verify-platform-temp"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/*platform*.zip"
+sh "cp ${env.WORKSPACE}/.gitignore ."
+
+sh "rm -rf ${env.WORKSPACE}/rat-platform-temp"
+sh "mkdir ${env.WORKSPACE}/rat-platform-temp"
+sh "cd ${env.WORKSPACE}/rat-platform-temp"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/*platform*.zip"
+
+sh "rm -rf ${env.WORKSPACE}/build-release-temp"
+sh "mkdir ${env.WORKSPACE}/build-release-temp"
+sh "cd ${env.WORKSPACE}/build-release-temp"
+sh "unzip 
${env.WORKSPACE}/nbbuild/build/release*.zip"
+
+sh "rm -rf 
${env.WORKSPACE}/verify-release-temp"
+sh "mkdir ${env.WORKSP

[jira] [Updated] (NETBEANS-2747) Update shortcut card for Apache NetBeans 11

2019-06-26 Thread Neil C Smith (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2747?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Neil C Smith updated NETBEANS-2747:
---
Fix Version/s: 11.1

> Update shortcut card for Apache NetBeans 11
> ---
>
> Key: NETBEANS-2747
> URL: https://issues.apache.org/jira/browse/NETBEANS-2747
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Geertjan Wielenga
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.1
>
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Make the title generic so we don't have to change each release, since the 
> shortcuts are stable and not changing for some time already.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] 01/01: Merge pull request #1327 from apache/geertjanw-patch-7

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit 45a78134b78f18ba837c294b07f342af3c06eea7
Merge: cbc7532 ed4c194
Author: Neil C Smith 
AuthorDate: Wed Jun 26 12:27:38 2019 +0100

Merge pull request #1327 from apache/geertjanw-patch-7

[NETBEANS-2747] Apache NetBeans 11 shortcut card PDF files

 nb/ide.branding/release/shortcuts.pdf | Bin 59275 -> 58801 bytes
 nb/ide.branding/release/shortcuts_mac.pdf | Bin 770469 -> 770042 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated (cbc7532 -> 45a7813)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from cbc7532  Merge pull request #1326 from apache/geertjanw-patch-6
 add ed4c194  [NETBEANS-2747] Apache NetBeans 11 shortcut card PDF files
 new 45a7813  Merge pull request #1327 from apache/geertjanw-patch-7

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 nb/ide.branding/release/shortcuts.pdf | Bin 59275 -> 58801 bytes
 nb/ide.branding/release/shortcuts_mac.pdf | Bin 770469 -> 770042 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] 01/01: Merge pull request #1326 from apache/geertjanw-patch-6

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit cbc7532163d7e5d9115e72d4a8eba55b6fb91f90
Merge: 385d2c9 8bc3f3e
Author: Neil C Smith 
AuthorDate: Wed Jun 26 12:27:16 2019 +0100

Merge pull request #1326 from apache/geertjanw-patch-6

[NETBEANS-2747] Apache NetBeans 11 shortcut card sources

 ide/usersguide/pdf_source/shortcuts.odt | Bin 64953 -> 65104 bytes
 ide/usersguide/pdf_source/shortcuts_mac.odt | Bin 50541 -> 50940 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated (385d2c9 -> cbc7532)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


from 385d2c9  When printing types, print intersection types properly. 
(#1315)
 add 8bc3f3e  [NETBEANS-2747] Apache NetBeans 11 shortcut card sources
 new cbc7532  Merge pull request #1326 from apache/geertjanw-patch-6

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ide/usersguide/pdf_source/shortcuts.odt | Bin 64953 -> 65104 bytes
 ide/usersguide/pdf_source/shortcuts_mac.odt | Bin 50541 -> 50940 bytes
 2 files changed, 0 insertions(+), 0 deletions(-)


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[netbeans] branch master updated: When printing types, print intersection types properly. (#1315)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 385d2c9  When printing types, print intersection types properly. 
(#1315)
385d2c9 is described below

commit 385d2c92ce020d053db1900b2f38e3a7189f0915
Author: Jan Lahoda 
AuthorDate: Wed Jun 26 12:16:02 2019 +0200

When printing types, print intersection types properly. (#1315)

* When printing types, print intersection types properly.

* Improving appearance of the intersection types.
---
 .../src/org/netbeans/api/java/source/TypeUtilities.java| 13 +
 .../org/netbeans/api/java/source/TypeUtilitiesTest.java| 14 +-
 2 files changed, 26 insertions(+), 1 deletion(-)

diff --git 
a/java/java.source.base/src/org/netbeans/api/java/source/TypeUtilities.java 
b/java/java.source.base/src/org/netbeans/api/java/source/TypeUtilities.java
index 7093b93..a2b892a 100644
--- a/java/java.source.base/src/org/netbeans/api/java/source/TypeUtilities.java
+++ b/java/java.source.base/src/org/netbeans/api/java/source/TypeUtilities.java
@@ -38,6 +38,7 @@ import javax.lang.model.type.ArrayType;
 import javax.lang.model.type.DeclaredType;
 import javax.lang.model.type.ErrorType;
 import javax.lang.model.type.ExecutableType;
+import javax.lang.model.type.IntersectionType;
 import javax.lang.model.type.TypeKind;
 import javax.lang.model.type.TypeMirror;
 import javax.lang.model.type.TypeVariable;
@@ -460,6 +461,18 @@ public final class TypeUtilities {
 }
 
 @Override
+public StringBuilder visitIntersection(IntersectionType t, Boolean p) {
+Iterator it = t.getBounds().iterator();
+while (it.hasNext()) {
+visit(it.next(), p);
+if (it.hasNext()) {
+DEFAULT_VALUE.append(" & ");
+}
+}
+return DEFAULT_VALUE;
+}
+
+@Override
 public StringBuilder visitError(ErrorType t, Boolean p) {
 Element e = t.asElement();
 if (e instanceof TypeElement) {
diff --git 
a/java/java.source.base/test/unit/src/org/netbeans/api/java/source/TypeUtilitiesTest.java
 
b/java/java.source.base/test/unit/src/org/netbeans/api/java/source/TypeUtilitiesTest.java
index 79d64ae..2aa1900 100644
--- 
a/java/java.source.base/test/unit/src/org/netbeans/api/java/source/TypeUtilitiesTest.java
+++ 
b/java/java.source.base/test/unit/src/org/netbeans/api/java/source/TypeUtilitiesTest.java
@@ -18,6 +18,12 @@
  */
 package org.netbeans.api.java.source;
 
+import com.sun.source.tree.BlockTree;
+import com.sun.source.tree.ClassTree;
+import com.sun.source.tree.ExpressionStatementTree;
+import com.sun.source.tree.ExpressionTree;
+import com.sun.source.tree.MemberSelectTree;
+import com.sun.source.tree.MethodInvocationTree;
 import java.io.File;
 import java.io.IOException;
 import java.net.URL;
@@ -125,7 +131,7 @@ public class TypeUtilitiesTest extends NbTestCase {
 public void testTypeName() throws Exception {
 FileObject root = FileUtil.createMemoryFileSystem().getRoot();
 FileObject src  = root.createData("Test.java");
-TestUtilities.copyStringToFile(src, "package test; public class Test 
{}");
+TestUtilities.copyStringToFile(src, "package test; public class Test { 
{ get().run(); } private  Z get() { return null; 
} }");
 JavaSource js = 
JavaSource.create(ClasspathInfo.create(ClassPathSupport.createClassPath(SourceUtilsTestUtil.getBootClassPath().toArray(new
 URL[0])), ClassPathSupport.createClassPath(new URL[0]), 
ClassPathSupport.createClassPath(new URL[0])), src);
 
 js.runUserActionTask(new Task() {
@@ -136,6 +142,12 @@ public class TypeUtilitiesTest extends NbTestCase {
 assertEquals("List[]", 
info.getTypeUtilities().getTypeName(info.getTreeUtilities().parseType("java.util.List[]",
 context)));
 assertEquals("java.util.List...", 
info.getTypeUtilities().getTypeName(info.getTreeUtilities().parseType("java.util.List[]",
 context), TypeUtilities.TypeNameOptions.PRINT_FQN, 
TypeUtilities.TypeNameOptions.PRINT_AS_VARARG));
 assertEquals("List...", 
info.getTypeUtilities().getTypeName(info.getTreeUtilities().parseType("java.util.List[]",
 context), TypeUtilities.TypeNameOptions.PRINT_AS_VARARG));
+ClassTree clazz = (ClassTree) 
info.getCompilationUnit().getTypeDecls().get(0);
+BlockTree init = (BlockTree) clazz.getMembers().get(1);
+ExpressionStatementTree var = (ExpressionStatementTree) 
init.getStatements().get(0);
+ExpressionTree getInvocation = ((MemberSelectTree) 
((MethodInvocationTree) var.getExpression()).getMethodSelect()).getExpression();
+TypeMirror intersectionType = 
info.getTrees().getTypeMirror(i

[netbeans] branch master updated: Fixing typo in the virtual-text-prepend key. (#1316)

2019-06-26 Thread neilcsmith
This is an automated email from the ASF dual-hosted git repository.

neilcsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 4ca095c  Fixing typo in the virtual-text-prepend key. (#1316)
4ca095c is described below

commit 4ca095c7cad1c9b495febf9ad312c0eb5b4722f4
Author: Jan Lahoda 
AuthorDate: Wed Jun 26 12:15:42 2019 +0200

Fixing typo in the virtual-text-prepend key. (#1316)
---
 ide/editor.lib2/apichanges.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ide/editor.lib2/apichanges.xml b/ide/editor.lib2/apichanges.xml
index 03211f4..62f76c5 100644
--- a/ide/editor.lib2/apichanges.xml
+++ b/ide/editor.lib2/apichanges.xml
@@ -93,7 +93,7 @@ is the proper place.
 If AttributeSet returned from HighlightsSequence contains 
key "virtual-text-prepend"
with a value of type String, the UI may optionally render 
the value as a
virtual text before the text of the highlight. It is 
recommended to make the
-   span of length 1, to avoid problems when the AttributeSet 
with "virtual-test-prepend"
+   span of length 1, to avoid problems when the AttributeSet 
with "virtual-text-prepend"
is merged with other AttributeSets, which could lead to 
duplication.
 
 


-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Rama updated NETBEANS-2749:
--
Description: 
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in _setOnFinished_ at 
_javafx.animation.FadeTransition_, it will display an error in the file even 
after it is run, but not in the code.

!picture4.png!

Please repair.

Thank you

  was:
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished at 
javafx.animation.FadeTransition, it will display an error in the file even 
after it is run, but not in the code.

!picture4.png!

Please repair.

Thank you


> Error in lambda expression does not appear directly in code.
> 
>
> Key: NETBEANS-2749
> URL: https://issues.apache.org/jira/browse/NETBEANS-2749
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
> Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
>Reporter: Michal Rama
>Priority: Critical
>  Labels: java, javafx, lambda, transition
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png
>
>
> Hello,
> When I delete a parameter in _setOnMouseEntered_ at 
> _javafx.scene.shape.Path_, it displays an error.
> !picture1.png!
> Same as the file.
> !picture2.png!
> Even after startup.
> !picture3.png!
> However, if I delete a parameter in _setOnFinished_ at 
> _javafx.animation.FadeTransition_, it will display an error in the file even 
> after it is run, but not in the code.
> !picture4.png!
> Please repair.
> Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Rama updated NETBEANS-2749:
--
Description: 
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished at 
javafx.animation.FadeTransition, it will display an error in the file even 
after it is run, but not in the code.

!picture4.png!

Please repair.

Thank you

  was:
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished at 
javafx.animation.FadeTransition,

it will display a bug in the file even after it is run, but not directly in the 
code.

!picture4.png!

Please repair.

Thank you


> Error in lambda expression does not appear directly in code.
> 
>
> Key: NETBEANS-2749
> URL: https://issues.apache.org/jira/browse/NETBEANS-2749
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
> Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
>Reporter: Michal Rama
>Priority: Critical
>  Labels: java, javafx, lambda, transition
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png
>
>
> Hello,
> When I delete a parameter in _setOnMouseEntered_ at 
> _javafx.scene.shape.Path_, it displays an error.
> !picture1.png!
> Same as the file.
> !picture2.png!
> Even after startup.
> !picture3.png!
> However, if I delete a parameter in setOnFinished at 
> javafx.animation.FadeTransition, it will display an error in the file even 
> after it is run, but not in the code.
> !picture4.png!
> Please repair.
> Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Rama updated NETBEANS-2749:
--
Description: 
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished at 
javafx.animation.FadeTransition,

it will display a bug in the file even after it is run, but not directly in the 
code.

!picture4.png!

Please repair.

Thank you

  was:
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished with 
javafx.animation.FadeTransition,

it will display a bug in the file even after it is run, but not directly in the 
code.

!picture4.png!

Please repair.

Thank you


> Error in lambda expression does not appear directly in code.
> 
>
> Key: NETBEANS-2749
> URL: https://issues.apache.org/jira/browse/NETBEANS-2749
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
> Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
>Reporter: Michal Rama
>Priority: Critical
>  Labels: java, javafx, lambda, transition
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png
>
>
> Hello,
> When I delete a parameter in _setOnMouseEntered_ at 
> _javafx.scene.shape.Path_, it displays an error.
> !picture1.png!
> Same as the file.
> !picture2.png!
> Even after startup.
> !picture3.png!
> However, if I delete a parameter in setOnFinished at 
> javafx.animation.FadeTransition,
> it will display a bug in the file even after it is run, but not directly in 
> the code.
> !picture4.png!
> Please repair.
> Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Rama updated NETBEANS-2749:
--
Description: 
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in setOnFinished with 
javafx.animation.FadeTransition,

it will display a bug in the file even after it is run, but not directly in the 
code.

!picture4.png!

Please repair.

Thank you

  was:
Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in _setOnFinished_ at 
_javafx.animation.FadeTransition_

This will show the error in the file even after running, but not directly in 
the code.

!picture4.png!

Please repair.

Thank you


> Error in lambda expression does not appear directly in code.
> 
>
> Key: NETBEANS-2749
> URL: https://issues.apache.org/jira/browse/NETBEANS-2749
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
> Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
>Reporter: Michal Rama
>Priority: Critical
>  Labels: java, javafx, lambda, transition
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png
>
>
> Hello,
> When I delete a parameter in _setOnMouseEntered_ at 
> _javafx.scene.shape.Path_, it displays an error.
> !picture1.png!
> Same as the file.
> !picture2.png!
> Even after startup.
> !picture3.png!
> However, if I delete a parameter in setOnFinished with 
> javafx.animation.FadeTransition,
> it will display a bug in the file even after it is run, but not directly in 
> the code.
> !picture4.png!
> Please repair.
> Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)
Michal Rama created NETBEANS-2749:
-

 Summary: Error in lambda expression does not appear directly in 
code.
 Key: NETBEANS-2749
 URL: https://issues.apache.org/jira/browse/NETBEANS-2749
 Project: NetBeans
  Issue Type: Bug
  Components: java - Editor
 Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
Reporter: Michal Rama
 Attachments: picture1.png, picture2.png, picture3.png, picture4.png

Hello,

When I delete a parameter in _setOnMouseEntered_ at _javafx.scene.shape.Path_, 
it displays an error.

!picture1.png!

Same as the file.

!picture2.png!

Even after startup.

!picture3.png!

However, if I delete a parameter in _setOnFinished_ at 
_javafx.animation.FadeTransition_

This will show the error in the file even after running, but not directly in 
the code.

!picture4.png!

Please repair.

Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-2749) Error in lambda expression does not appear directly in code.

2019-06-26 Thread Michal Rama (JIRA)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michal Rama updated NETBEANS-2749:
--
Priority: Critical  (was: Major)

> Error in lambda expression does not appear directly in code.
> 
>
> Key: NETBEANS-2749
> URL: https://issues.apache.org/jira/browse/NETBEANS-2749
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Editor
> Environment: Windows 10, NetBeans Linux 1156, Java 12.0.1
>Reporter: Michal Rama
>Priority: Critical
>  Labels: java, javafx, lambda, transition
> Attachments: picture1.png, picture2.png, picture3.png, picture4.png
>
>
> Hello,
> When I delete a parameter in _setOnMouseEntered_ at 
> _javafx.scene.shape.Path_, it displays an error.
> !picture1.png!
> Same as the file.
> !picture2.png!
> Even after startup.
> !picture3.png!
> However, if I delete a parameter in _setOnFinished_ at 
> _javafx.animation.FadeTransition_
> This will show the error in the file even after running, but not directly in 
> the code.
> !picture4.png!
> Please repair.
> Thank you



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists