mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
cathc "d" command.
This commit is contained in:
parent
5381ea3906
commit
968e9cfc2c
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public class CLIProcessor {
|
||||||
boolean isDelete = false;
|
boolean isDelete = false;
|
||||||
/* deleting breaks: clear, delete */
|
/* deleting breaks: clear, delete */
|
||||||
if ((operation.startsWith("cl") && "clear".indexOf(operation) != -1) ||
|
if ((operation.startsWith("cl") && "clear".indexOf(operation) != -1) ||
|
||||||
(operation.startsWith("del") && "delete".indexOf(operation) != -1)) {
|
(operation.equals("d") || (operation.startsWith("del") && "delete".indexOf(operation) != -1))) {
|
||||||
isDelete = true;
|
isDelete = true;
|
||||||
}
|
}
|
||||||
return isDelete;
|
return isDelete;
|
||||||
|
|
Loading…
Add table
Reference in a new issue