mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
[261047] StandardCredentialsProvider does not cause a reacquire of a password when validation fails in a background thread
https://bugs.eclipse.org/bugs/show_bug.cgi?id=261047
This commit is contained in:
parent
fc49a59be3
commit
f929391e3d
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2007, 2008 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2007, 2009 IBM Corporation and others. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* This program and the accompanying materials are made available under the terms
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -14,6 +14,7 @@
|
||||||
* Martin Oberhuber (Wind River) - [218304] Improve deferred adapter loading
|
* Martin Oberhuber (Wind River) - [218304] Improve deferred adapter loading
|
||||||
* Richie Yu (IBM) - [241716] Handle change expired password
|
* Richie Yu (IBM) - [241716] Handle change expired password
|
||||||
* Don Yantzi (IBM) - [233970] Handle messages provided by ICredentialsValidator
|
* Don Yantzi (IBM) - [233970] Handle messages provided by ICredentialsValidator
|
||||||
|
* David Dykstal (IBM) - [261047] StandardCredentialsProvider does not cause a reacquire of a password when validation fails in a background thread
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
package org.eclipse.rse.ui.subsystems;
|
package org.eclipse.rse.ui.subsystems;
|
||||||
|
|
||||||
|
@ -216,8 +217,8 @@ public class StandardCredentialsProvider extends AbstractCredentialsProvider {
|
||||||
if (shell != null) {
|
if (shell != null) {
|
||||||
SystemMessageDialog dialog = new SystemMessageDialog(shell, m);
|
SystemMessageDialog dialog = new SystemMessageDialog(shell, m);
|
||||||
dialog.open();
|
dialog.open();
|
||||||
reacquire = true;
|
|
||||||
}
|
}
|
||||||
|
reacquire = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (supportsPassword() || supportsUserId()) {
|
if (supportsPassword() || supportsUserId()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue