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/incubator-netbeans.git
The following commit(s) were added to refs/heads/master by this push:
new f7652fe [NETBEANS-2148] Removing space after Maven password option
new fa6d3a5 Merge pull request #1142 from herkrath/NETBEANS-2148
f7652fe is described below
commit f7652feecebe926dad3dac2a3b1146d4c437015a
Author: Mark Herkrath <[email protected]>
AuthorDate: Wed Feb 20 16:38:44 2019 +0000
[NETBEANS-2148] Removing space after Maven password option
---
.../maven/src/org/netbeans/modules/maven/actions/scm/ui/CheckoutUI.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/java/maven/src/org/netbeans/modules/maven/actions/scm/ui/CheckoutUI.java
b/java/maven/src/org/netbeans/modules/maven/actions/scm/ui/CheckoutUI.java
index 27094c3..92585c8 100644
--- a/java/maven/src/org/netbeans/modules/maven/actions/scm/ui/CheckoutUI.java
+++ b/java/maven/src/org/netbeans/modules/maven/actions/scm/ui/CheckoutUI.java
@@ -356,7 +356,7 @@ public class CheckoutUI extends javax.swing.JPanel {
brc.setProperty("connectionUrl", txtUrl.getText());//NOI18N
if (txtUser.getText().trim().length() != 0) {
brc.setProperty("username", txtUser.getText());//NOI18N
- brc.setProperty("password ", new
String(txtPassword.getPassword()));//NOI18N
+ brc.setProperty("password", new
String(txtPassword.getPassword()));//NOI18N
}
brc.setShowDebug(chkPrintDebugInfo.isSelected());
brc.setShowError(chkPrintDebugInfo.isSelected());
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists