[jira] [Updated] (NETBEANS-4665) Upgrade Bouncy Castle from 1.68 to 1.70

2022-03-10 Thread Jira


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

José Contreras updated NETBEANS-4665:
-
Affects Version/s: 13
   (was: 12.2)
   (was: 12.3)
  Description: 
Library Notes:

* Many bug fixes and improvements

NetBeans Notes:

* Upgrade bcprov, bcpg and bcpkix
* Add a new module ide/bcutil due to a refactoring in version 1.69
* Remove entry in ignored-overlaps file


[Web Page|https://bouncycastle.org/latest_releases.html]

[Releases Notes|https://bouncycastle.org/releasenotes.html]

  was:
Notes:
- Many bug fixes and improvements

[Web Page|https://bouncycastle.org/latest_releases.html]

[Releases Notes|https://bouncycastle.org/releasenotes.html]

  Summary: Upgrade Bouncy Castle from 1.68 to 1.70  (was: Upgrade 
Bouncy Castle from 1.64 to 1.68)

> Upgrade Bouncy Castle from 1.68 to 1.70
> ---
>
> Key: NETBEANS-4665
> URL: https://issues.apache.org/jira/browse/NETBEANS-4665
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Libraries
>Affects Versions: 13
>Reporter: José Contreras
>Assignee: José Contreras
>Priority: Minor
>  Labels: bcpg, bcprov, pull-request-available
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Library Notes:
> * Many bug fixes and improvements
> NetBeans Notes:
> * Upgrade bcprov, bcpg and bcpkix
> * Add a new module ide/bcutil due to a refactoring in version 1.69
> * Remove entry in ignored-overlaps file
> [Web Page|https://bouncycastle.org/latest_releases.html]
> [Releases Notes|https://bouncycastle.org/releasenotes.html]



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: Simple changes to reduce warning messages. (#3760)

2022-03-10 Thread bwalker
This is an automated email from the ASF dual-hosted git repository.

bwalker 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 754c2cd  Simple changes to reduce warning messages. (#3760)
754c2cd is described below

commit 754c2cd6b3e21acec851e41f994f30aa54e18277
Author: Brad Walker 
AuthorDate: Thu Mar 10 17:51:11 2022 -0700

Simple changes to reduce warning messages. (#3760)

These changes strictly reduce HashMap warning messages like the following:

[repeat] 
/home/bwalker/src/netbeans/platform/core.netigso/src/org/netbeans/core/netigso/Netigso.java:121:
 warning: [rawtypes] found raw type: HashMap
[repeat] Map configMap = new HashMap();
[repeat] ^
[repeat]   missing type arguments for generic class HashMap
[repeat]   where K,V are type-variables:
[repeat] K extends Object declared in class HashMap
[repeat] V extends Object declared in class HashMap
---
 .../modules/glassfish/eecommon/api/DomainEditor.java |  4 ++--
 .../modules/j2ee/dd/impl/commonws/ComponentBeanMultiple.java | 12 +++-
 .../j2ee/dd/impl/commonws/DescriptionBeanMultiple.java   |  9 ++---
 .../modules/j2ee/dd/impl/common/ComponentBeanMultiple.java   |  6 +++---
 .../j2ee/ddloaders/multiview/EjbJarMultiViewDataObject.java  |  4 ++--
 .../modules/j2ee/ddloaders/multiview/EntityHelper.java   |  5 +++--
 .../netbeans/modules/payara/eecommon/api/DomainEditor.java   |  4 ++--
 .../modules/web/beans/completion/CCPaintComponent.java   |  4 ++--
 .../src/org/netbeans/api/debugger/DebuggerManager.java   |  2 +-
 .../src/org/netbeans/api/debugger/Properties.java|  6 +++---
 .../netbeans/modules/xml/catalog/user/UserXMLCatalog.java|  6 +++---
 .../xml/tax/beans/editor/TreeNodeFilterCustomEditor.java |  2 +-
 .../modules/dbschema/jdbcimpl/SchemaElementImpl.java |  4 ++--
 .../netbeans/modules/dbschema/jdbcimpl/TableElementImpl.java |  6 +++---
 .../j2ee/persistence/editor/completion/CCPaintComponent.java |  2 +-
 .../j2ee/persistence/entitygenerator/CMPMappingModel.java|  2 +-
 .../src/org/netbeans/api/templates/FileBuilder.java  |  2 +-
 .../src/org/openide/explorer/ExplorerActions.java|  2 +-
 .../src/org/openide/filesystems/DefaultAttributes.java   |  5 +++--
 19 files changed, 47 insertions(+), 40 deletions(-)

diff --git 
a/enterprise/glassfish.eecommon/src/org/netbeans/modules/glassfish/eecommon/api/DomainEditor.java
 
b/enterprise/glassfish.eecommon/src/org/netbeans/modules/glassfish/eecommon/api/DomainEditor.java
index b98e490..efd8359 100644
--- 
a/enterprise/glassfish.eecommon/src/org/netbeans/modules/glassfish/eecommon/api/DomainEditor.java
+++ 
b/enterprise/glassfish.eecommon/src/org/netbeans/modules/glassfish/eecommon/api/DomainEditor.java
@@ -485,8 +485,8 @@ public class DomainEditor {
 return dSources;
 }
 
-private HashMap getPoolValues(HashMap cpMap, String 
poolName) {
-HashMap pValues = new HashMap();
+private Map getPoolValues(Map cpMap, String 
poolName) {
+Map pValues = new HashMap<>();
 Node cpNode = (Node) cpMap.get(poolName);
 NamedNodeMap cpAttrMap = cpNode.getAttributes();
 Node dsClassName = cpAttrMap.getNamedItem(CONST_DS_CLASS);
diff --git 
a/enterprise/j2ee.dd.webservice/src/org/netbeans/modules/j2ee/dd/impl/commonws/ComponentBeanMultiple.java
 
b/enterprise/j2ee.dd.webservice/src/org/netbeans/modules/j2ee/dd/impl/commonws/ComponentBeanMultiple.java
index 862b906..30de21a 100644
--- 
a/enterprise/j2ee.dd.webservice/src/org/netbeans/modules/j2ee/dd/impl/commonws/ComponentBeanMultiple.java
+++ 
b/enterprise/j2ee.dd.webservice/src/org/netbeans/modules/j2ee/dd/impl/commonws/ComponentBeanMultiple.java
@@ -25,7 +25,9 @@
 package org.netbeans.modules.j2ee.dd.impl.commonws;
 
 import java.util.Iterator;
+import java.util.HashMap;
 import java.util.List;
+import java.util.Map;
 import org.netbeans.modules.schema2beans.Version;
 import org.netbeans.modules.j2ee.dd.api.common.*;
 import org.netbeans.modules.j2ee.dd.api.common.Icon;
@@ -110,8 +112,8 @@ public abstract class ComponentBeanMultiple extends 
DescriptionBeanMultiple impl
 return getDisplayName(null);
 } catch (VersionNotSupportedException ex){return null;}
 }
-public java.util.Map getAllDisplayNames() {
-java.util.Map map =new java.util.HashMap();
+public Map getAllDisplayNames() {
+Map map =new HashMap<>();
 for (int i=0;i map = new HashMap<>();
 for (int i=0;i map =new HashMap<>();
 org.netbeans.modules.j2ee.dd.api.common.Icon[] icons = getIcon();
 for (int i=0;i map =new HashMap<>();
 for (int i=0;i map = new HashMap<>();
 for (int i=0;i map = new HashMap<>();
 for (int i=0;i map =new HashMap<>();

[jira] [Commented] (NETBEANS-5599) PHP 8.1 Support

2022-03-10 Thread Junichi Yamamoto (Jira)


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

Junichi Yamamoto commented on NETBEANS-5599:


[~eviweb] No problem :)

> PHP 8.1 Support
> ---
>
> Key: NETBEANS-5599
> URL: https://issues.apache.org/jira/browse/NETBEANS-5599
> Project: NetBeans
>  Issue Type: New Feature
>  Components: php - Editor
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 7.5h
>  Remaining Estimate: 0h
>
> [https://wiki.php.net/rfc#php_81]
>  * [https://wiki.php.net/rfc/final_class_const]
>  * [https://wiki.php.net/rfc/noreturn_type]
>  * [https://wiki.php.net/rfc/readonly_properties_v2]
>  * [https://wiki.php.net/rfc/new_in_initializers]
>  * [https://wiki.php.net/rfc/pure-intersection-types]



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: increase git clone depth so that we can restart older jobs post merge.

2022-03-10 Thread mbien
This is an automated email from the ASF dual-hosted git repository.

mbien 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 fe51d10  increase git clone depth so that we can restart older jobs 
post merge.
 new 21022da  Merge pull request #3754 from mbien/minor-ci-tweaks
fe51d10 is described below

commit fe51d10af4274d0ba3aa80edc0a0f8eca73c93af
Author: Michael Bien 
AuthorDate: Thu Mar 10 16:45:49 2022 +0100

increase git clone depth so that we can restart older jobs post merge.

print java version info via ant.
---
 .travis.yml   | 2 +-
 nbbuild/build.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index d561c3b..f529bd9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,7 +38,7 @@ cache:
 
 git:
   quiet: true
-  depth: 3
+  depth: 50
 
 matrix:
 include:
diff --git a/nbbuild/build.xml b/nbbuild/build.xml
index 6770cfd..ad99e7f 100644
--- a/nbbuild/build.xml
+++ b/nbbuild/build.xml
@@ -38,6 +38,9 @@
 
   
+
+
+
 
 
 

-
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] [Closed] (NETBEANS-4610) URISyntaxException building with org-netbeans-libs-javafx.jar using Java 11.0.7 or later

2022-03-10 Thread Rangi Keen (Jira)


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

Rangi Keen closed NETBEANS-4610.


> URISyntaxException building with org-netbeans-libs-javafx.jar using Java 
> 11.0.7 or later
> 
>
> Key: NETBEANS-4610
> URL: https://issues.apache.org/jira/browse/NETBEANS-4610
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Deployment
>Affects Versions: 12.0
>Reporter: Rangi Keen
>Priority: Major
> Fix For: 12.4
>
>
> To reproduce:
> # Create a new Java project in NetBeans
> # Open the project properties
> # Select the Libraries category
> # Choose JDK 11.0.7 or later for Java Platform
> # On the Compile tab, click the ellipsis button next to Classpath and choose 
> Add JAR/Folder
> # Select /platform/modules/org-netbeans-libs-javafx.jar
> # Save the changes and close the project properties
> # Clean and build the project
> You'll see the following error in the build output:
> {noformat}
> error reading /platform/modules/org-netbeans-libs-javafx.jar; 
> java.net.URISyntaxException: Illegal character in path at index : 
> file://platform/modules/${java.home}/lib/ext/jfxrt.jar
> {noformat}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-4610) URISyntaxException building with org-netbeans-libs-javafx.jar using Java 11.0.7 or later

2022-03-10 Thread Rangi Keen (Jira)


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

Rangi Keen resolved NETBEANS-4610.
--
Fix Version/s: 12.4
   Resolution: Fixed

This was resolved with [PR 
#2761|https://github.com/apache/netbeans/pull/2761/commits/1b96b56ac3bfda8bd9b97f36c25901e84289cb23].

> URISyntaxException building with org-netbeans-libs-javafx.jar using Java 
> 11.0.7 or later
> 
>
> Key: NETBEANS-4610
> URL: https://issues.apache.org/jira/browse/NETBEANS-4610
> Project: NetBeans
>  Issue Type: Bug
>  Components: javafx - Deployment
>Affects Versions: 12.0
>Reporter: Rangi Keen
>Priority: Major
> Fix For: 12.4
>
>
> To reproduce:
> # Create a new Java project in NetBeans
> # Open the project properties
> # Select the Libraries category
> # Choose JDK 11.0.7 or later for Java Platform
> # On the Compile tab, click the ellipsis button next to Classpath and choose 
> Add JAR/Folder
> # Select /platform/modules/org-netbeans-libs-javafx.jar
> # Save the changes and close the project properties
> # Clean and build the project
> You'll see the following error in the build output:
> {noformat}
> error reading /platform/modules/org-netbeans-libs-javafx.jar; 
> java.net.URISyntaxException: Illegal character in path at index : 
> file://platform/modules/${java.home}/lib/ext/jfxrt.jar
> {noformat}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-5216) Jakarta EE 9 Project Support

2022-03-10 Thread Claudia Pastor Ramirez (Jira)


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

Claudia Pastor Ramirez commented on NETBEANS-5216:
--

Hello, 

I know this is supposed to be completed, but I have found certain parts of the 
Jakarta support missing in the IDE. For now I have found the following problems:
 * The IDE does not recognise the XML schemas that use the jakarta namespaces, 
like the web.xml 5.0 or persistence.xml 3.0. If you generate a one of those, it 
threats them as "incorrect" despite their validity.
 * It is impossible to add any Jakarta persistence provider.
 * The class creation Wizards related to persistence ignore project 
configuration and generate the imports with the javax.persistence namespace.

I would be really grateful if you could review it. Regards,

> Jakarta EE 9 Project Support
> 
>
> Key: NETBEANS-5216
> URL: https://issues.apache.org/jira/browse/NETBEANS-5216
> Project: NetBeans
>  Issue Type: New Feature
>  Components: javaee - Web Project
>Reporter: Josh Juneau
>Assignee: Josh Juneau
>Priority: Major
>  Labels: pull-request-available
> Fix For: 12.4
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6336) Ubuntu reporting deprecated call from the IDE

2022-03-10 Thread Claudia Pastor Ramirez (Jira)


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

Claudia Pastor Ramirez updated NETBEANS-6336:
-
Description: 
Despite having correct user permissions, I was unable of adding my Tomcat 
server to Netbeans. Checking the syslog I found the following messages:

!image-2021-12-27-14-09-16-940.png!

I do not know if it is related with the problem with Tomcat, but it is a 
problem anyway. So, I am reporting it to the maintainers as the log requested. 

Regards,

  was:
Despite having correct user permissions, I was unable of adding my Tomcat 
server to Netbeans. Checking the syslog I found the following messages:

!image-2021-12-27-14-09-16-940.png!

So, I am reporting it to the maintainers as the log requested. 

Regards,


> Ubuntu reporting deprecated call from the IDE
> -
>
> Key: NETBEANS-6336
> URL: https://issues.apache.org/jira/browse/NETBEANS-6336
> Project: NetBeans
>  Issue Type: Bug
>  Components: core
>Affects Versions: 12.5, 12.6
> Environment: Ubuntu 20.04
> Netbeans 12.6
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: image-2021-12-27-14-09-16-940.png
>
>
> Despite having correct user permissions, I was unable of adding my Tomcat 
> server to Netbeans. Checking the syslog I found the following messages:
> !image-2021-12-27-14-09-16-940.png!
> I do not know if it is related with the problem with Tomcat, but it is a 
> problem anyway. So, I am reporting it to the maintainers as the log 
> requested. 
> Regards,



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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 (a757f69 -> 409100c)

2022-03-10 Thread sdedic
This is an automated email from the ASF dual-hosted git repository.

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


from a757f69  Merge pull request #3724 from mbien/avoid-replaceAll
 new 92de4e7  Retry loading L after module ClassLoader is ready
 new c8440eb  Restart NBLS when theme switches light <-> dark
 new 409100c  Merge pull request #3741 from sdedic/lsp/dark-laf-support

The 6716 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:
 .../nbcode/integration/nbproject/project.xml   |  6 +++
 java/java.lsp.server/vscode/src/extension.ts   | 57 --
 .../org/netbeans/core/startup/Bundle.properties|  2 +-
 .../src/org/netbeans/core/startup/CLIOptions.java  |  6 ++-
 .../src/org/netbeans/core/startup/CoreBridge.java  |  3 +-
 .../src/org/netbeans/core/startup/Main.java| 19 +++-
 6 files changed, 85 insertions(+), 8 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: Keep database username in upper case (#3740)

2022-03-10 Thread dbalek
This is an automated email from the ASF dual-hosted git repository.

dbalek 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 8607374  Keep database username in upper case (#3740)
8607374 is described below

commit 8607374992cd2613817ff2f1c9a3fc96831cdbad
Author: jhorvath 
AuthorDate: Thu Mar 10 14:01:33 2022 +0100

Keep database username in upper case (#3740)
---
 .../netbeans/modules/cloud/oracle/actions/DownloadWalletDialog.java| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/actions/DownloadWalletDialog.java
 
b/enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/actions/DownloadWalletDialog.java
index 186a2a3..3764e30 100644
--- 
a/enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/actions/DownloadWalletDialog.java
+++ 
b/enterprise/cloud.oracle/src/org/netbeans/modules/cloud/oracle/actions/DownloadWalletDialog.java
@@ -23,6 +23,7 @@ import java.awt.Dialog;
 import java.awt.GraphicsEnvironment;
 import java.io.File;
 import java.io.IOException;
+import java.util.Locale;
 import java.util.Optional;
 import javax.swing.JFileChooser;
 import javax.swing.event.DocumentListener;
@@ -100,7 +101,7 @@ final class DownloadWalletDialog extends 
AbstractPasswordPanel {
 if (DialogDescriptor.OK_OPTION != selected) {
 return Optional.empty();
 }
-String username = inp.getInputText();
+String username = inp.getInputText().toUpperCase(Locale.US);
 
 inp = new NotifyDescriptor.PasswordLine(Bundle.JDBCPassword(), 
Bundle.JDBCPassword());
 selected = DialogDisplayer.getDefault().notify(inp);

-
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: fix for #3737: BasicSearchForm should not select first entry by default.

2022-03-10 Thread mbien
This is an automated email from the ASF dual-hosted git repository.

mbien 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 0b66442  fix for #3737: BasicSearchForm should not select first entry 
by default.
 new 49e167e  Merge pull request #3739 from mbien/modify-criteria-fix
0b66442 is described below

commit 0b66442b83e0a65560838ab644b0f1a16bd58b49
Author: Michael Bien 
AuthorDate: Wed Mar 9 14:27:18 2022 +0100

fix for #3737: BasicSearchForm should not select first entry by default.
---
 platform/api.search/src/org/netbeans/modules/search/BasicSearchForm.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/platform/api.search/src/org/netbeans/modules/search/BasicSearchForm.java 
b/platform/api.search/src/org/netbeans/modules/search/BasicSearchForm.java
index 8cc87b6..ed0879e 100644
--- a/platform/api.search/src/org/netbeans/modules/search/BasicSearchForm.java
+++ b/platform/api.search/src/org/netbeans/modules/search/BasicSearchForm.java
@@ -366,7 +366,6 @@ final class BasicSearchForm extends JPanel implements 
ChangeListener,
 private void initValuesFromCriteria(BasicSearchCriteria initialCriteria,
 boolean searchAndReplace) {
 cboxTextToFind.setSearchPattern(initialCriteria.getSearchPattern());
-cboxTextToFind.getComponent().setSelectedIndex(0);
 if (cboxReplacement != null) {
 cboxReplacement.setSelectedItem(new ReplaceModelItem(
 ReplacePattern.create(initialCriteria.getReplaceExpr(),

-
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