mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-28 19:35:36 +02:00
[388592] Renaming a file is case insensitive for Linux on remote systems
This commit is contained in:
parent
38cb52b5a7
commit
2b54b80bc7
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@
|
||||||
* Kevin Doyle (IBM) - 174776: perform required sorting of Collection arguments
|
* Kevin Doyle (IBM) - 174776: perform required sorting of Collection arguments
|
||||||
* David Dykstal (IBM) - 174776: disallowed sorting of input arguments, used copies
|
* David Dykstal (IBM) - 174776: disallowed sorting of input arguments, used copies
|
||||||
* David McKnight (IBM) [373326] When one of Duplicate Filter Names is deleted, both filters are deleted.
|
* David McKnight (IBM) [373326] When one of Duplicate Filter Names is deleted, both filters are deleted.
|
||||||
|
* David McKnight (IBM) [388592] Renaming a file is case insensitive for Linux on remote systems
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.ui.validators;
|
package org.eclipse.rse.ui.validators;
|
||||||
|
@ -309,7 +310,7 @@ public class ValidatorUniqueString
|
||||||
for (int i = 0; i < existingList.length && !match; i++){
|
for (int i = 0; i < existingList.length && !match; i++){
|
||||||
String existing = existingList[i];
|
String existing = existingList[i];
|
||||||
if (existing != null){
|
if (existing != null){
|
||||||
match = newText.toLowerCase().equals(existing.toLowerCase());
|
match = newText.equals(existing);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (match){
|
if (match){
|
||||||
|
|
Loading…
Add table
Reference in a new issue