[jira] [Updated] (NETBEANS-2901) Set Configuration - is white

2019-07-25 Thread Gergely Turi (JIRA)


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

Gergely Turi updated NETBEANS-2901:
---
Attachment: Menu_002.jpg
Menu_001.jpg

> Set Configuration -  is white
> -
>
> Key: NETBEANS-2901
> URL: https://issues.apache.org/jira/browse/NETBEANS-2901
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 11.0
>Reporter: Gergely Turi
>Priority: Trivial
>  Labels: newbie
> Attachments: Menu_001.jpg, Menu_002.jpg
>
>
> Under the Projects tab if you go to Set Configuration then the  config> is not visible as the font color seems to be set to white.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2901) Set Configuration - is white

2019-07-25 Thread Gergely Turi (JIRA)
Gergely Turi created NETBEANS-2901:
--

 Summary: Set Configuration -  is white
 Key: NETBEANS-2901
 URL: https://issues.apache.org/jira/browse/NETBEANS-2901
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Affects Versions: 11.0
Reporter: Gergely Turi


Under the Projects tab if you go to Set Configuration then the  
is not visible as the font color seems to be set to white.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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: Add node for dependencies even if module name not discovered

2019-07-25 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing 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 c7d7f4c  Add node for dependencies even if module name not discovered
 new cc6d449  Merge pull request #1367 from AlexFalappa/NETBEANS-2783
c7d7f4c is described below

commit c7d7f4ce9d48a0a3219f27a4890c4cc153e6c265
Author: Alessandro Falappa 
AuthorDate: Wed Jul 10 19:15:34 2019 +0200

Add node for dependencies even if module name not discovered
---
 java/maven/src/org/netbeans/modules/maven/nodes/DependenciesNode.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/java/maven/src/org/netbeans/modules/maven/nodes/DependenciesNode.java 
b/java/maven/src/org/netbeans/modules/maven/nodes/DependenciesNode.java
index 649e96c..62cdb40 100644
--- a/java/maven/src/org/netbeans/modules/maven/nodes/DependenciesNode.java
+++ b/java/maven/src/org/netbeans/modules/maven/nodes/DependenciesNode.java
@@ -242,6 +242,7 @@ public class DependenciesNode extends AbstractNode {
 lst.add(new DependencyWrapper(a, longLiving, () -> 
moduleInfoSupport != null ? moduleInfoSupport.canAddToModuleInfo(name) : 
false));
 } else {
 LOG.log(Level.WARNING, "Could not determine module 
name for artifact {0}", new Object[]{url}); // NOI18N
+lst.add(new DependencyWrapper(a, longLiving, () -> 
false));
 }
 }
 }


-
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-2899) Corrupted code generated when creating new JPanel

2019-07-25 Thread Olof Andersson (JIRA)


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

Olof Andersson commented on NETBEANS-2899:
--

Problem disappeared after removing ~/.netbeans/11.0/config/

(but that of course also reset all configuration settings, open projects, etc.)

> Corrupted code generated when creating new JPanel
> -
>
> Key: NETBEANS-2899
> URL: https://issues.apache.org/jira/browse/NETBEANS-2899
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
> System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Olof Andersson
>Priority: Major
>
> h3. *Steps:*
>  - Project tree > Right-click a package > New > JPanel Form
>  - Dialog "New JPanel Form" is displayed
>  - Click "Finish"
> h3. *Expected result:*
> A new JPanel is generated successfully
> h3. *Actual result:*
> An error dialog with message:
> {quote}"The form seems to be corrupted. The GUI builder
>  is not able to find the sections with the generated code.
>  The special comments that denote the start and the end
>  of these sections were removed or modified.
> The form will be opened in read-only mode.
> See [http://wiki.netbeans.org/FormGuardedBlockError]
>  for additional information."
> {quote}
> And the generated code of NewJPanel.java is corrupted:
> {code:java}
> /*
>  * To change this license header, choose License Headers in Project 
> Properties.
>  * To change this template file, choose Tools | Templates
>  * and open the template in the editor.
>  */
> ackage editor;
> /**
>  *
>  * @author olof
>  */
> public class NewJPanel extends javax.swing.JPanel {
>*
>* Creates new form NewJPanel
>*  ublic NewJPanel() {
>   ponents();
>   }
>   /*  * T met
>* od is called from within the constructor to initiali orm.
>* WARNING: Do
>* ify this code. The content of this method is always
>* regener the Fo
>* m Editor.
>*/
>   @SuppressWarnin
>che")
>   //   
> 
>   private void initComponents()
>   javax.swing.GroupLayout layout  
> avax.swing.GroupLayout(this);
>   this.setLayout(layout);
>   layout.set  alGroup(
>   layout.crea 
> elGroup(javax.swing.GroupL
>   nt.LEADING)
>   .addGap(0, 400, Short.MAX_VALUE)
>   );
>   layout.setV
>   layout.createParallelGroup(
>   ng. out.Alignment.LEADING)
>   0, 300, Short.MAX_VALUE)
>   );
>   }
>   //   
>   ariables declaration - do not mo
>   -BE va  les
>   // End of variables declaration//GEN-E  riables
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2899) Corrupted code generated when creating new JPanel

2019-07-25 Thread Olof Andersson (JIRA)


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

Olof Andersson updated NETBEANS-2899:
-
Priority: Major  (was: Minor)

> Corrupted code generated when creating new JPanel
> -
>
> Key: NETBEANS-2899
> URL: https://issues.apache.org/jira/browse/NETBEANS-2899
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
> System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Olof Andersson
>Priority: Major
>
> h3. *Steps:*
>  - Project tree > Right-click a package > New > JPanel Form
>  - Dialog "New JPanel Form" is displayed
>  - Click "Finish"
> h3. *Expected result:*
> A new JPanel is generated successfully
> h3. *Actual result:*
> An error dialog with message:
> {quote}"The form seems to be corrupted. The GUI builder
>  is not able to find the sections with the generated code.
>  The special comments that denote the start and the end
>  of these sections were removed or modified.
> The form will be opened in read-only mode.
> See [http://wiki.netbeans.org/FormGuardedBlockError]
>  for additional information."
> {quote}
> And the generated code of NewJPanel.java is corrupted:
> {code:java}
> /*
>  * To change this license header, choose License Headers in Project 
> Properties.
>  * To change this template file, choose Tools | Templates
>  * and open the template in the editor.
>  */
> ackage editor;
> /**
>  *
>  * @author olof
>  */
> public class NewJPanel extends javax.swing.JPanel {
>*
>* Creates new form NewJPanel
>*  ublic NewJPanel() {
>   ponents();
>   }
>   /*  * T met
>* od is called from within the constructor to initiali orm.
>* WARNING: Do
>* ify this code. The content of this method is always
>* regener the Fo
>* m Editor.
>*/
>   @SuppressWarnin
>che")
>   //   
> 
>   private void initComponents()
>   javax.swing.GroupLayout layout  
> avax.swing.GroupLayout(this);
>   this.setLayout(layout);
>   layout.set  alGroup(
>   layout.crea 
> elGroup(javax.swing.GroupL
>   nt.LEADING)
>   .addGap(0, 400, Short.MAX_VALUE)
>   );
>   layout.setV
>   layout.createParallelGroup(
>   ng. out.Alignment.LEADING)
>   0, 300, Short.MAX_VALUE)
>   );
>   }
>   //   
>   ariables declaration - do not mo
>   -BE va  les
>   // End of variables declaration//GEN-E  riables
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2899) Corrupted code generated when creating new JPanel

2019-07-25 Thread Olof Andersson (JIRA)


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

Olof Andersson updated NETBEANS-2899:
-
Summary: Corrupted code generated when creating new JPanel  (was: Error 
"Form seems to be corrupted" when creating new JPanel)

> Corrupted code generated when creating new JPanel
> -
>
> Key: NETBEANS-2899
> URL: https://issues.apache.org/jira/browse/NETBEANS-2899
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
> Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
> incubator-netbeans-release-404-on-20190319)
> Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
> Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
> System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
>Reporter: Olof Andersson
>Priority: Minor
>
> h3. *Steps:*
>  - Project tree > Right-click a package > New > JPanel Form
>  - Dialog "New JPanel Form" is displayed
>  - Click "Finish"
> h3. *Expected result:*
> A new JPanel is generated successfully
> h3. *Actual result:*
> An error dialog with message:
> {quote}"The form seems to be corrupted. The GUI builder
>  is not able to find the sections with the generated code.
>  The special comments that denote the start and the end
>  of these sections were removed or modified.
> The form will be opened in read-only mode.
> See [http://wiki.netbeans.org/FormGuardedBlockError]
>  for additional information."
> {quote}
> And the generated code of NewJPanel.java is corrupted:
> {code:java}
> /*
>  * To change this license header, choose License Headers in Project 
> Properties.
>  * To change this template file, choose Tools | Templates
>  * and open the template in the editor.
>  */
> ackage editor;
> /**
>  *
>  * @author olof
>  */
> public class NewJPanel extends javax.swing.JPanel {
>*
>* Creates new form NewJPanel
>*  ublic NewJPanel() {
>   ponents();
>   }
>   /*  * T met
>* od is called from within the constructor to initiali orm.
>* WARNING: Do
>* ify this code. The content of this method is always
>* regener the Fo
>* m Editor.
>*/
>   @SuppressWarnin
>che")
>   //   
> 
>   private void initComponents()
>   javax.swing.GroupLayout layout  
> avax.swing.GroupLayout(this);
>   this.setLayout(layout);
>   layout.set  alGroup(
>   layout.crea 
> elGroup(javax.swing.GroupL
>   nt.LEADING)
>   .addGap(0, 400, Short.MAX_VALUE)
>   );
>   layout.setV
>   layout.createParallelGroup(
>   ng. out.Alignment.LEADING)
>   0, 300, Short.MAX_VALUE)
>   );
>   }
>   //   
>   ariables declaration - do not mo
>   -BE va  les
>   // End of variables declaration//GEN-E  riables
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2476) Netbeans 11 EE Support Weblogic Server

2019-07-25 Thread Raymond DeCampo (JIRA)


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

Raymond DeCampo commented on NETBEANS-2476:
---

>From what I understand this is a licensing issue.  So it seems reasonable 
>there might be a relatively painless way to build the needed code ourselves.  
>However I am not well-versed enough in NetBeans internals to know what that 
>might be.  So if anyone does know of a work-around, please share it with the 
>rest of the class. 

> Netbeans 11 EE Support Weblogic Server
> --
>
> Key: NETBEANS-2476
> URL: https://issues.apache.org/jira/browse/NETBEANS-2476
> Project: NetBeans
>  Issue Type: New Feature
>Affects Versions: 11.0
>Reporter: Wayne Zhang
>Priority: Major
>
> Java EE don't support Weblogic server (Plugins > Servers > Add Server).
>  
> Please support Weblogic server as previous Netbeans does.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2476) Netbeans 11 EE Support Weblogic Server

2019-07-25 Thread Paul Allen (JIRA)


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

Paul Allen commented on NETBEANS-2476:
--

WebLogic 12c support is a requirement for me or I will have to remain with NB 
8.2.

> Netbeans 11 EE Support Weblogic Server
> --
>
> Key: NETBEANS-2476
> URL: https://issues.apache.org/jira/browse/NETBEANS-2476
> Project: NetBeans
>  Issue Type: New Feature
>Affects Versions: 11.0
>Reporter: Wayne Zhang
>Priority: Major
>
> Java EE don't support Weblogic server (Plugins > Servers > Add Server).
>  
> Please support Weblogic server as previous Netbeans does.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2900) Stepping through the code all variables when hovering show value as 'null'

2019-07-25 Thread Doug Thompson (JIRA)
Doug Thompson created NETBEANS-2900:
---

 Summary: Stepping through the code all variables when hovering 
show value as 'null'
 Key: NETBEANS-2900
 URL: https://issues.apache.org/jira/browse/NETBEANS-2900
 Project: NetBeans
  Issue Type: Bug
  Components: debugger - Code
Affects Versions: 11.1
 Environment: Windows 10, NB 11.1, JDK 1.8, Java EE 7
Reporter: Doug Thompson


When setting a breakpoint then stepping through the code, hovering over 
variables always show the value as 'null'.  In addition, right-clicking on a 
highlighted variable does not provide the 'Add as watcher' option that normally 
would add that to the 'Variables' pane.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2899) Error "Form seems to be corrupted" when creating new JPanel

2019-07-25 Thread Olof Andersson (JIRA)
Olof Andersson created NETBEANS-2899:


 Summary: Error "Form seems to be corrupted" when creating new 
JPanel
 Key: NETBEANS-2899
 URL: https://issues.apache.org/jira/browse/NETBEANS-2899
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.0
 Environment: Product Version: Apache NetBeans IDE 11.0 (Build 
incubator-netbeans-release-404-on-20190319)
Java: 11.0.3; Java HotSpot(TM) 64-Bit Server VM 11.0.3+12-LTS
Runtime: Java(TM) SE Runtime Environment 11.0.3+12-LTS
System: Linux version 4.15.0-54-generic running on amd64; UTF-8; en_US (nb)
Reporter: Olof Andersson


h3. *Steps:*
 - Project tree > Right-click a package > New > JPanel Form
 - Dialog "New JPanel Form" is displayed
 - Click "Finish"

h3. *Expected result:*

A new JPanel is generated successfully
h3. *Actual result:*

An error dialog with message:
{quote}"The form seems to be corrupted. The GUI builder
 is not able to find the sections with the generated code.
 The special comments that denote the start and the end
 of these sections were removed or modified.

The form will be opened in read-only mode.

See [http://wiki.netbeans.org/FormGuardedBlockError]
 for additional information."
{quote}
And the generated code of NewJPanel.java is corrupted:
{code:java}
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
ackage editor;

/**
 *
 * @author olof
 */
public class NewJPanel extends javax.swing.JPanel {

 *
 * Creates new form NewJPanel
 *  ublic NewJPanel() {
ponents();
}

/*  * T met
 * od is called from within the constructor to initiali orm.
 * WARNING: Do
 * ify this code. The content of this method is always
 * regener the Fo
 * m Editor.
 */
@SuppressWarnin
 che")
//   

private void initComponents()
javax.swing.GroupLayout layout  
avax.swing.GroupLayout(this);
this.setLayout(layout);
layout.set  alGroup(
layout.crea 
elGroup(javax.swing.GroupL
nt.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setV

layout.createParallelGroup(
ng. out.Alignment.LEADING)

0, 300, Short.MAX_VALUE)
);
}
//   
ariables declaration - do not mo
-BE va  les
// End of variables declaration//GEN-E  riables
}

{code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2865) Cannot run Netbeans 11 using JDK 11

2019-07-25 Thread Hunter Schoonover (JIRA)


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

Hunter Schoonover commented on NETBEANS-2865:
-

[~lkishalmi] Confirmed.

[~GeertjanWielenga] I do not know whether or not the bug I logged here is 
reproducible in 11.1, though I would assume it is if the dev team did not 
explicitly add code to handle null characters found in profile settings.

If the dev team has not yet addressed this, I propose that upon importing 
settings from a previous version, each file is scanned and all instances of 
{{\u.}}

> Cannot run Netbeans 11 using JDK 11
> ---
>
> Key: NETBEANS-2865
> URL: https://issues.apache.org/jira/browse/NETBEANS-2865
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Hunter Schoonover
>Priority: Major
> Attachments: consoleOutput.txt, netbeans.log
>
>
> Please note that this issue does *NOT* occur with JDK 8.
> Downloaded and installed JDK 11 to C:\Program Files\Java\jdk-11.0.4
> Downloaded and unzipped Netbeans 11 to C:\Program Files\netbeans
> The etc/netbeans.conf file has been edited to set JDK home:
> *netbeans_jdkhome="C:\Program Files\Java\jdk-11.0.4"*
> When trying to run bin/netbeans64.exe:
>  # *First time:* The loading window appears, loads for a bit, and then the 
> whole program disappears.
>  # *Second time:* Loading window does not appear. An empty Java application 
> appears.
>  # If I go to Task Manager and manually end the Netbeans process, I can get 
> back to step 1.
> Executing netbeans64.exe from PowerShell outputs error messages to the 
> console. They can be found in consoleOutput.txt attachment.
> The results from executing *bin/netbeans64.exe --trace C:\netbeans.log* can 
> be found in netbeans.log attachment.
> For reference, this is the tutorial I followed:
> [https://www.youtube.com/watch?v=cxh-hVty09g]
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-1696) PHP 7.4 Support

2019-07-25 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto commented on NETBEANS-1696:


Done :)

PHP 7.4 support should be available in the latest dev build.

[https://builds.apache.org/view/M-R/view/NetBeans/job/netbeans-linux/lastSuccessfulBuild/artifact/]

> PHP 7.4 Support
> ---
>
> Key: NETBEANS-1696
> URL: https://issues.apache.org/jira/browse/NETBEANS-1696
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Editor
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 13h
>  Remaining Estimate: 0h
>
> * [RFC: PHP 7.4|https://wiki.php.net/rfc#php_74]
> * [Typed Properties 2.0|https://wiki.php.net/rfc/typed_properties_v2]
> * [Null Coalescing Assignment 
> Operator|https://wiki.php.net/rfc/null_coalesce_equal_operator]
> * [Spread Operator in Array 
> Expression|https://wiki.php.net/rfc/spread_operator_for_array]
> * [Arrow Functions 2.0|https://wiki.php.net/rfc/arrow_functions_v2]
> * [Numeric Literal 
> Separator|https://wiki.php.net/rfc/numeric_literal_separator]
> * [New custom object serialization 
> mechanism|https://wiki.php.net/rfc/custom_object_serialization]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-1696) PHP 7.4 Support

2019-07-25 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto updated NETBEANS-1696:
---
Fix Version/s: 11.2

> PHP 7.4 Support
> ---
>
> Key: NETBEANS-1696
> URL: https://issues.apache.org/jira/browse/NETBEANS-1696
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Editor
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
>  Time Spent: 13h
>  Remaining Estimate: 0h
>
> * [RFC: PHP 7.4|https://wiki.php.net/rfc#php_74]
> * [Typed Properties 2.0|https://wiki.php.net/rfc/typed_properties_v2]
> * [Null Coalescing Assignment 
> Operator|https://wiki.php.net/rfc/null_coalesce_equal_operator]
> * [Spread Operator in Array 
> Expression|https://wiki.php.net/rfc/spread_operator_for_array]
> * [Arrow Functions 2.0|https://wiki.php.net/rfc/arrow_functions_v2]
> * [Numeric Literal 
> Separator|https://wiki.php.net/rfc/numeric_literal_separator]
> * [New custom object serialization 
> mechanism|https://wiki.php.net/rfc/custom_object_serialization]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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] [Resolved] (NETBEANS-1696) PHP 7.4 Support

2019-07-25 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto resolved NETBEANS-1696.

Resolution: Fixed

> PHP 7.4 Support
> ---
>
> Key: NETBEANS-1696
> URL: https://issues.apache.org/jira/browse/NETBEANS-1696
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Editor
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: 11.2
>
>  Time Spent: 13h
>  Remaining Estimate: 0h
>
> * [RFC: PHP 7.4|https://wiki.php.net/rfc#php_74]
> * [Typed Properties 2.0|https://wiki.php.net/rfc/typed_properties_v2]
> * [Null Coalescing Assignment 
> Operator|https://wiki.php.net/rfc/null_coalesce_equal_operator]
> * [Spread Operator in Array 
> Expression|https://wiki.php.net/rfc/spread_operator_for_array]
> * [Arrow Functions 2.0|https://wiki.php.net/rfc/arrow_functions_v2]
> * [Numeric Literal 
> Separator|https://wiki.php.net/rfc/numeric_literal_separator]
> * [New custom object serialization 
> mechanism|https://wiki.php.net/rfc/custom_object_serialization]



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2480) Not a usual UTF8 question!

2019-07-25 Thread Eugene Pliskin (JIRA)


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

Eugene Pliskin updated NETBEANS-2480:
-
Description: 
Non-ASCII characters completely filtered out of Gradle error messages, despite 
"netbeans_default_options" key in "netbeans.conf" file containing 
"-J-Dfile.encoding=UTF-8" clause.
  
Attached are two build logs of the same Groovy source file with intentional 
error in it.
  
 1) NetBeans version 8.2 CORRECTLY reports an error:
 [Static type checking] - The variable [параметры] is undeclared.
  @ line 72, column 38.
    def платформы = rv.Платформы(параметры)
     ^
 2) While NetBeans version 11.0 completely filteres out all non-ascii letters:
 [Static type checking] - The variable [] is undeclared.
  @ line 72, column 38.
    def  = rv.()
     ^
  
 Note that both attached logs contain line: "Picked up JAVA_TOOL_OPTIONS: 
-Dfile.encoding=UTF-8".
  
 Note also that outside of NetBeans this Gradle command:
  
     gradlew -x check build > a 2>&1
  
 produces correct UTF-8 encoded report similar to NetBeans v.8.2 output.
  

  was:
Non-ASCII characters completely filtered out of Gradle error messages, despite 
"netbeans_default_options" key in "netbeans.conf" file containing 
"-J-Dfile.encoding=UTF-8" clause.
 
Enclosed please find two build logs of the same Groovy source file with 
intentional error in it.
 
1) NetBeans version 8.2 CORRECTLY reports an error:
[Static type checking] - The variable [параметры] is undeclared.
 @ line 72, column 38.
   def платформы = rv.Платформы(параметры)
    ^
2) While NetBeans version 11.0 completely filteres out all non-ascii letters:
[Static type checking] - The variable [] is undeclared.
 @ line 72, column 38.
   def  = rv.()
    ^
 
Note that both attached logs contain line: "Picked up JAVA_TOOL_OPTIONS: 
-Dfile.encoding=UTF-8".
 
Note also that outside of NetBeans this Gradle command:
 
    gradlew -x check build > a 2>&1
 
produces correct UTF-8 encoded report similar to NetBeans v.8.2 output.
 


> Not a usual UTF8 question!
> --
>
> Key: NETBEANS-2480
> URL: https://issues.apache.org/jira/browse/NETBEANS-2480
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Code
>Affects Versions: 11.0
> Environment: Windows 10
>Reporter: Eugene Pliskin
>Priority: Major
>  Labels: gradle, utf-8
> Attachments: NetBeans-11.0-console.txt, NetBeans-8.2-console.txt
>
>
> Non-ASCII characters completely filtered out of Gradle error messages, 
> despite "netbeans_default_options" key in "netbeans.conf" file containing 
> "-J-Dfile.encoding=UTF-8" clause.
>   
> Attached are two build logs of the same Groovy source file with intentional 
> error in it.
>   
>  1) NetBeans version 8.2 CORRECTLY reports an error:
>  [Static type checking] - The variable [параметры] is undeclared.
>   @ line 72, column 38.
>     def платформы = rv.Платформы(параметры)
>      ^
>  2) While NetBeans version 11.0 completely filteres out all non-ascii letters:
>  [Static type checking] - The variable [] is undeclared.
>   @ line 72, column 38.
>     def  = rv.()
>      ^
>   
>  Note that both attached logs contain line: "Picked up JAVA_TOOL_OPTIONS: 
> -Dfile.encoding=UTF-8".
>   
>  Note also that outside of NetBeans this Gradle command:
>   
>      gradlew -x check build > a 2>&1
>   
>  produces correct UTF-8 encoded report similar to NetBeans v.8.2 output.
>   



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2480) Not a usual UTF8 question!

2019-07-25 Thread Eugene Pliskin (JIRA)


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

Eugene Pliskin updated NETBEANS-2480:
-
Summary: Not a usual UTF8 question!  (was: UTF8 not honored in Gradle 
output)

> Not a usual UTF8 question!
> --
>
> Key: NETBEANS-2480
> URL: https://issues.apache.org/jira/browse/NETBEANS-2480
> Project: NetBeans
>  Issue Type: Bug
>  Components: groovy - Code
>Affects Versions: 11.0
> Environment: Windows 10
>Reporter: Eugene Pliskin
>Priority: Major
>  Labels: gradle, utf-8
> Attachments: NetBeans-11.0-console.txt, NetBeans-8.2-console.txt
>
>
> Non-ASCII characters completely filtered out of Gradle error messages, 
> despite "netbeans_default_options" key in "netbeans.conf" file containing 
> "-J-Dfile.encoding=UTF-8" clause.
>  
> Enclosed please find two build logs of the same Groovy source file with 
> intentional error in it.
>  
> 1) NetBeans version 8.2 CORRECTLY reports an error:
> [Static type checking] - The variable [параметры] is undeclared.
>  @ line 72, column 38.
>    def платформы = rv.Платформы(параметры)
>     ^
> 2) While NetBeans version 11.0 completely filteres out all non-ascii letters:
> [Static type checking] - The variable [] is undeclared.
>  @ line 72, column 38.
>    def  = rv.()
>     ^
>  
> Note that both attached logs contain line: "Picked up JAVA_TOOL_OPTIONS: 
> -Dfile.encoding=UTF-8".
>  
> Note also that outside of NetBeans this Gradle command:
>  
>     gradlew -x check build > a 2>&1
>  
> produces correct UTF-8 encoded report similar to NetBeans v.8.2 output.
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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: release date of Apache NetBeans 11.1 is 22 july 2019

2019-07-25 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 315d044  release date of Apache NetBeans 11.1 is 22 july 2019
315d044 is described below

commit 315d044f609f2d04a1cd9fc171563e382b011e56
Author: Eric Barboni 
AuthorDate: Thu Jul 25 10:51:52 2019 +0200

release date of Apache NetBeans 11.1 is 22 july 2019
---
 meta/netbeansrelease.json | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/netbeansrelease.json b/meta/netbeansrelease.json
index 028816c..e48d52d 100644
--- a/meta/netbeansrelease.json
+++ b/meta/netbeansrelease.json
@@ -69,8 +69,8 @@
 "tlp": "true",
 "apidocurl": "https://bits.netbeans.org/11.1/javadoc;,
 "releasedate": {
-"day": "17",
-"month": "06",
+"day": "22",
+"month": "07",
 "year": "2019"
 },
 "previousreleasedate": {
@@ -99,4 +99,4 @@
 "year": "2019"
 }
 }
-}
\ No newline at end of file
+}


-
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-2898) Clicked Oracle Jet ofrom project properties and error appeared

2019-07-25 Thread Ruslan Lopez Carro (JIRA)


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

Ruslan Lopez Carro updated NETBEANS-2898:
-
Attachment: uigestures.xml
messages.log

> Clicked Oracle Jet ofrom project properties and error appeared
> --
>
> Key: NETBEANS-2898
> URL: https://issues.apache.org/jira/browse/NETBEANS-2898
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Gradle, web - Oracle JET
>Affects Versions: 11.1
>Reporter: Ruslan Lopez Carro
>Assignee: Laszlo Kishalmi
>Priority: Minor
> Attachments: messages.log, uigestures.xml
>
>
> I was working on a gradle project.
> relevant part of the trace:
> {code:java}
> ava.lang.IllegalArgumentException: 2.0.0 is unknown version
> at 
> org.netbeans.modules.html.ojet.data.DataProviderImpl.setCurrentVersion(DataProviderImpl.java:165)
> at org.netbeans.modules.html.ojet.ui.OJETPanel.save(OJETPanel.java:161)
> at 
> org.netbeans.modules.html.ojet.ui.OJETPanel$1.actionPerformed(OJETPanel.java:66)
> at 
> org.netbeans.modules.project.uiapi.CustomizerDialog$OptionListener.storePerformed(CustomizerDialog.java:332)
> at 
> org.netbeans.modules.project.uiapi.CustomizerDialog$OptionListener.storePerformed(CustomizerDialog.java:335)
> at 
> org.netbeans.modules.project.uiapi.CustomizerDialog$OptionListener.access$400(CustomizerDialog.java:228)
> at 
> org.netbeans.modules.project.uiapi.CustomizerDialog$OptionListener$2$1$1.run(CustomizerDialog.java:291)
> at org.openide.filesystems.FileUtil$2.run(FileUtil.java:412)
> at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:102)
> at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:494)
> at org.openide.filesystems.FileUtil.runAtomicAction(FileUtil.java:396)
> at org.openide.filesystems.FileUtil.runAtomicAction(FileUtil.java:416)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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 #1400 from apache/php7.4

2019-07-25 Thread tmysik
This is an automated email from the ASF dual-hosted git repository.

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

commit c068c0bc666a89f846da4ce74036a5870dfc251b
Merge: f1603f0 d644beb
Author: Tomáš Myšík 
AuthorDate: Thu Jul 25 09:00:25 2019 +0200

Merge pull request #1400 from apache/php7.4

[NETBEANS-1696] PHP 7.4 Support

 .../org/netbeans/modules/php/editor/CodeUtils.java |   15 +
 .../modules/php/editor/PredefinedSymbols.java  |   92 +-
 .../php/editor/api/elements/FieldElement.java  |1 +
 .../editor/completion/CompletionContextFinder.java |   53 +-
 .../php/editor/completion/PHPCodeCompletion.java   |  166 +-
 .../php/editor/elements/FieldElementImpl.java  |   35 +-
 .../php/editor/elements/MethodElementImpl.java |4 +
 .../modules/php/editor/indent/FormatVisitor.java   |   52 +-
 .../modules/php/editor/index/PHPIndexer.java   |6 +-
 .../php/editor/lexer/PHP5ColoringLexer.java| 3035 
 .../modules/php/editor/lexer/PHPTokenId.java   |1 +
 .../{FieldElement.java => ArrowFunctionScope.java} |   12 +-
 .../modules/php/editor/model/FieldElement.java |3 +-
 .../php/editor/model/VariableScopeFinder.java  |3 +-
 .../editor/model/impl/ArrowFunctionScopeImpl.java} |   20 +-
 .../php/editor/model/impl/FieldElementImpl.java|   18 +-
 .../php/editor/model/impl/FunctionScopeImpl.java   |   63 +
 .../php/editor/model/impl/ModelBuilder.java|7 +-
 .../php/editor/model/impl/ModelVisitor.java|  140 +-
 .../modules/php/editor/model/impl/Type.java|   12 +
 .../php/editor/model/impl/VariousUtils.java|   24 +
 .../php/editor/model/nodes/ASTNodeInfo.java|7 +-
 .../model/nodes/ArrowFunctionDeclarationInfo.java  |   83 +
 .../model/nodes/SingleFieldDeclarationInfo.java|   14 +
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 5549 +++---
 .../modules/php/editor/parser/ASTPHP5Scanner.java  | 2922 +++
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |  261 +-
 .../php/editor/parser/EncodedActionTable1.java | 8048 ++--
 .../php/editor/parser/EncodedActionTable10.java| 6306 +++
 .../php/editor/parser/EncodedActionTable11.java| 6558 
 .../php/editor/parser/EncodedActionTable12.java| 5934 +++
 .../php/editor/parser/EncodedActionTable13.java| 6284 +++
 .../php/editor/parser/EncodedActionTable14.java| 3564 +++--
 .../php/editor/parser/EncodedActionTable2.java | 7292 +-
 .../php/editor/parser/EncodedActionTable3.java | 6594 
 .../php/editor/parser/EncodedActionTable4.java | 7712 +--
 .../php/editor/parser/EncodedActionTable5.java | 6326 +++
 .../php/editor/parser/EncodedActionTable6.java | 6948 -
 .../php/editor/parser/EncodedActionTable7.java | 6650 
 .../php/editor/parser/EncodedActionTable8.java | 6062 +++
 .../php/editor/parser/EncodedActionTable9.java | 6954 -
 .../netbeans/modules/php/editor/parser/Utils.java  |3 +
 .../parser/astnodes/ASTErrorExpression.java}   |   25 +-
 .../parser/astnodes/ArrowFunctionDeclaration.java  |  132 +
 .../editor/parser/astnodes/FieldsDeclaration.java  |   29 +-
 .../editor/parser/astnodes/InfixExpression.java|8 +-
 .../parser/astnodes/SingleFieldDeclaration.java|   22 +-
 ...eclaration.java => UnpackableArrayElement.java} |   50 +-
 .../php/editor/parser/astnodes/Visitor.java|6 +
 .../astnodes/visitors/DefaultTreePathVisitor.java  |   24 +-
 .../parser/astnodes/visitors/DefaultVisitor.java   |   22 +-
 .../php/editor/resources/code-templates.xml|   24 +
 .../modules/php/editor/resources/layer.xml |3 +
 .../verification/ArrowFunctionSuggestion.java  |  268 +
 .../CombinedAssignmentOperatorSuggestion.java  |  296 +
 .../verification/FieldRedeclarationHintError.java  |7 +-
 .../verification/ImmutableVariablesHint.java   |   21 +-
 .../editor/verification/PHP74UnhandledError.java   |   69 +-
 .../verification/UninitializedVariableHint.java|   53 +-
 .../verification/UnusableTypesUnhandledError.java  |  216 +
 .../editor/verification/UnusedVariableHint.java|   86 +-
 .../lexer/php74/arrowFunctions_01.pass |  449 ++
 .../lexer/php74/numericLiteralSeparator_01.pass|  169 +
 .../ASTPHP5ParserTest/parser/TextSearchQuery.pass  |   26 +
 .../parser/anonymousClass_01.pass  |   10 +
 .../ASTPHP5ParserTest/parser/heredoc_015.pass  |2 +
 .../ASTPHP5ParserTest/parser/issue258959.pass  |2 +
 .../ASTPHP5ParserTest/parser/issue271109.pass  |2 +
 .../parser/php73/heredoc_indent_spaces_01.pass |2 +
 .../parser/php73/heredoc_indent_spaces_02.pass |2 +
 .../parser/php73/heredoc_indent_tabs_01.pass   |2 +
 

[netbeans] branch php7.4 deleted (was d644beb)

2019-07-25 Thread tmysik
This is an automated email from the ASF dual-hosted git repository.

tmysik pushed a change to branch php7.4
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


 was d644beb  Merge pull request #1393 from 
junichi11/netbeans-2873-combined-assignment-operators-hint

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.


-
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-2897) Stackoverflow while indexing node project

2019-07-25 Thread Ruslan Lopez Carro (JIRA)


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

Ruslan Lopez Carro updated NETBEANS-2897:
-
Attachment: uilog.xml

> Stackoverflow while indexing node project
> -
>
> Key: NETBEANS-2897
> URL: https://issues.apache.org/jira/browse/NETBEANS-2897
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Node.js
>Affects Versions: 11.1
>Reporter: Ruslan Lopez Carro
>Priority: Major
> Attachments: errorlog.log, uilog.xml
>
>
> Relevant part of the trace:
> {code:java}
> java.lang.StackOverflowError
>   at java.base/java.util.WeakHashMap.getTable(WeakHashMap.java:350)
>   at java.base/java.util.WeakHashMap.get(WeakHashMap.java:398)
>   at 
> org.openide.util.lookup.MetaInfServicesLookup.beforeLookup(MetaInfServicesLookup.java:121)
>   at 
> org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
>   at 
> org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
>   at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
>   at 
> org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:239)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2862) Null Pointer Exception

2019-07-25 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi updated NETBEANS-2862:
--
Component/s: java - Compiler

> Null Pointer Exception
> --
>
> Key: NETBEANS-2862
> URL: https://issues.apache.org/jira/browse/NETBEANS-2862
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.0
>Reporter: Honza Brázdil
>Priority: Major
>
> {code}
> java.lang.NullPointerException
>   at 
> com.sun.tools.javac.comp.Check$Validator.visitTypeIdent(Check.java:1450)
>   at 
> com.sun.tools.javac.tree.JCTree$JCPrimitiveTypeTree.accept(JCTree.java:2406)
>   at 
> com.sun.tools.javac.comp.Check$Validator.validateTree(Check.java:1469)
>   at com.sun.tools.javac.comp.Check.validate(Check.java:1340)
>   at com.sun.tools.javac.comp.Attr.visitVarDef(Attr.java:1213)
>   at 
> com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:968)
>   at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:672)
>   at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:752)
>   at com.sun.tools.javac.comp.Attr.attribClassBody(Attr.java:5140)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:5023)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:4951)
>   at com.sun.tools.javac.comp.Attr.attrib(Attr.java:4896)
>   at 
> com.sun.tools.javac.main.JavaCompiler.attribute(JavaCompiler.java:1434)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$1.process(JavacTaskImpl.java:504)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$Filter.run(JavacTaskImpl.java:651)
>   at com.sun.tools.javac.api.JavacTaskImpl.analyze(JavacTaskImpl.java:507)
> [catch] at 
> org.netbeans.modules.java.source.nbjavac.indexing.MultiPassCompileWorker.compile(MultiPassCompileWorker.java:261)
>   at 
> org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:347)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
>   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$AbstractRootsWork.scanSource(RepositoryUpdater.java:5749)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSources(RepositoryUpdater.java:5419)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RootsWork.getDone(RepositoryUpdater.java:5038)
>   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 
> 

[jira] [Assigned] (NETBEANS-2862) Null Pointer Exception

2019-07-25 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi reassigned NETBEANS-2862:
-

Assignee: Jan Lahoda

> Null Pointer Exception
> --
>
> Key: NETBEANS-2862
> URL: https://issues.apache.org/jira/browse/NETBEANS-2862
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Compiler
>Affects Versions: 11.0
>Reporter: Honza Brázdil
>Assignee: Jan Lahoda
>Priority: Major
>
> {code}
> java.lang.NullPointerException
>   at 
> com.sun.tools.javac.comp.Check$Validator.visitTypeIdent(Check.java:1450)
>   at 
> com.sun.tools.javac.tree.JCTree$JCPrimitiveTypeTree.accept(JCTree.java:2406)
>   at 
> com.sun.tools.javac.comp.Check$Validator.validateTree(Check.java:1469)
>   at com.sun.tools.javac.comp.Check.validate(Check.java:1340)
>   at com.sun.tools.javac.comp.Attr.visitVarDef(Attr.java:1213)
>   at 
> com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:968)
>   at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:672)
>   at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:752)
>   at com.sun.tools.javac.comp.Attr.attribClassBody(Attr.java:5140)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:5023)
>   at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:4951)
>   at com.sun.tools.javac.comp.Attr.attrib(Attr.java:4896)
>   at 
> com.sun.tools.javac.main.JavaCompiler.attribute(JavaCompiler.java:1434)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$1.process(JavacTaskImpl.java:504)
>   at 
> com.sun.tools.javac.api.JavacTaskImpl$Filter.run(JavacTaskImpl.java:651)
>   at com.sun.tools.javac.api.JavacTaskImpl.analyze(JavacTaskImpl.java:507)
> [catch] at 
> org.netbeans.modules.java.source.nbjavac.indexing.MultiPassCompileWorker.compile(MultiPassCompileWorker.java:261)
>   at 
> org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:347)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
>   at 
> org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
>   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$AbstractRootsWork.scanSource(RepositoryUpdater.java:5749)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork.scanSources(RepositoryUpdater.java:5419)
>   at 
> org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$RootsWork.getDone(RepositoryUpdater.java:5038)
>   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 
> 

[jira] [Updated] (NETBEANS-2897) Stackoverflow while indexing node project

2019-07-25 Thread Ruslan Lopez Carro (JIRA)


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

Ruslan Lopez Carro updated NETBEANS-2897:
-
Attachment: errorlog.log

> Stackoverflow while indexing node project
> -
>
> Key: NETBEANS-2897
> URL: https://issues.apache.org/jira/browse/NETBEANS-2897
> Project: NetBeans
>  Issue Type: Bug
>  Components: javascript - Node.js
>Affects Versions: 11.1
>Reporter: Ruslan Lopez Carro
>Priority: Major
> Attachments: errorlog.log
>
>
> Relevant part of the trace:
> {code:java}
> java.lang.StackOverflowError
>   at java.base/java.util.WeakHashMap.getTable(WeakHashMap.java:350)
>   at java.base/java.util.WeakHashMap.get(WeakHashMap.java:398)
>   at 
> org.openide.util.lookup.MetaInfServicesLookup.beforeLookup(MetaInfServicesLookup.java:121)
>   at 
> org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
>   at 
> org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
>   at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
>   at 
> org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
>   at 
> org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:239)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
>   at 
> org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2865) Cannot run Netbeans 11 using JDK 11

2019-07-25 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi commented on NETBEANS-2865:
---

[~hsschoonover] please confirm that you actually bump into:

[https://stackoverflow.com/questions/57084144/cannot-run-apache-netbeans-11-using-jdk-11]

And the guide there helped you resolve the issue.

[~vityank] please open a new issue, also attach logs to it.

> Cannot run Netbeans 11 using JDK 11
> ---
>
> Key: NETBEANS-2865
> URL: https://issues.apache.org/jira/browse/NETBEANS-2865
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.0
>Reporter: Hunter Schoonover
>Priority: Major
> Attachments: consoleOutput.txt, netbeans.log
>
>
> Please note that this issue does *NOT* occur with JDK 8.
> Downloaded and installed JDK 11 to C:\Program Files\Java\jdk-11.0.4
> Downloaded and unzipped Netbeans 11 to C:\Program Files\netbeans
> The etc/netbeans.conf file has been edited to set JDK home:
> *netbeans_jdkhome="C:\Program Files\Java\jdk-11.0.4"*
> When trying to run bin/netbeans64.exe:
>  # *First time:* The loading window appears, loads for a bit, and then the 
> whole program disappears.
>  # *Second time:* Loading window does not appear. An empty Java application 
> appears.
>  # If I go to Task Manager and manually end the Netbeans process, I can get 
> back to step 1.
> Executing netbeans64.exe from PowerShell outputs error messages to the 
> console. They can be found in consoleOutput.txt attachment.
> The results from executing *bin/netbeans64.exe --trace C:\netbeans.log* can 
> be found in netbeans.log attachment.
> For reference, this is the tutorial I followed:
> [https://www.youtube.com/watch?v=cxh-hVty09g]
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2897) Stackoverflow while indexing node project

2019-07-25 Thread Ruslan Lopez Carro (JIRA)
Ruslan Lopez Carro created NETBEANS-2897:


 Summary: Stackoverflow while indexing node project
 Key: NETBEANS-2897
 URL: https://issues.apache.org/jira/browse/NETBEANS-2897
 Project: NetBeans
  Issue Type: Bug
  Components: javascript - Node.js
Affects Versions: 11.1
Reporter: Ruslan Lopez Carro


Relevant part of the trace:


{code:java}
java.lang.StackOverflowError
at java.base/java.util.WeakHashMap.getTable(WeakHashMap.java:350)
at java.base/java.util.WeakHashMap.get(WeakHashMap.java:398)
at 
org.openide.util.lookup.MetaInfServicesLookup.beforeLookup(MetaInfServicesLookup.java:121)
at 
org.openide.util.lookup.AbstractLookup.lookupItem(AbstractLookup.java:402)
at 
org.openide.util.lookup.AbstractLookup.lookup(AbstractLookup.java:396)
at org.openide.util.lookup.ProxyLookup.lookup(ProxyLookup.java:197)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isInternalFile(JsElementImpl.java:194)
at 
org.netbeans.modules.javascript2.model.JsElementImpl.isPlatform(JsElementImpl.java:188)
at 
org.netbeans.modules.javascript2.model.api.IndexedElement$Flag.getFlag(IndexedElement.java:387)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.createDocument(JsIndexer.java:121)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:221)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:239)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
at 
org.netbeans.modules.javascript2.editor.index.JsIndexer.storeObject(JsIndexer.java:229)
{code}




--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2896) Error after installing nbjavac

2019-07-25 Thread Ruslan Lopez Carro (JIRA)


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

Ruslan Lopez Carro updated NETBEANS-2896:
-
Attachment: uilog.xml

> Error after installing nbjavac
> --
>
> Key: NETBEANS-2896
> URL: https://issues.apache.org/jira/browse/NETBEANS-2896
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Module System
>Affects Versions: 11.1
>Reporter: Ruslan Lopez Carro
>Priority: Minor
> Attachments: errorlog.log, uilog.xml
>
>
> Installed netbeand and opened it.
> It suggested me to install nbjabac plugin and did that.
> Once installed the notification appeared.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2896) Error after installing nbjavac

2019-07-25 Thread Ruslan Lopez Carro (JIRA)


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

Ruslan Lopez Carro updated NETBEANS-2896:
-
Attachment: errorlog.log

> Error after installing nbjavac
> --
>
> Key: NETBEANS-2896
> URL: https://issues.apache.org/jira/browse/NETBEANS-2896
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Module System
>Affects Versions: 11.1
>Reporter: Ruslan Lopez Carro
>Priority: Minor
> Attachments: errorlog.log
>
>
> Installed netbeand and opened it.
> It suggested me to install nbjabac plugin and did that.
> Once installed the notification appeared.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2896) Error after installing nbjavac

2019-07-25 Thread Ruslan Lopez Carro (JIRA)
Ruslan Lopez Carro created NETBEANS-2896:


 Summary: Error after installing nbjavac
 Key: NETBEANS-2896
 URL: https://issues.apache.org/jira/browse/NETBEANS-2896
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Module System
Affects Versions: 11.1
Reporter: Ruslan Lopez Carro
 Attachments: errorlog.log

Installed netbeand and opened it.
It suggested me to install nbjabac plugin and did that.
Once installed the notification appeared.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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