mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 21:45:22 +02:00
[164202] fix for manual connection - need to handle null ticket case
This commit is contained in:
parent
410d9913e1
commit
29a42ceef1
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ public class ServerCommandHandler extends CommandHandler
|
||||||
String st = serverTicket.getName();
|
String st = serverTicket.getName();
|
||||||
String ct = clientTicket.getName();
|
String ct = clientTicket.getName();
|
||||||
|
|
||||||
if (st == null || st.equals("null") || ct.equals(st))
|
if (st == null || ct.equals(st))
|
||||||
{
|
{
|
||||||
serverTicket.setAttribute(DE.A_VALUE,DataStoreResources.model_valid);
|
serverTicket.setAttribute(DE.A_VALUE,DataStoreResources.model_valid);
|
||||||
clientTicket.setAttribute(DE.A_VALUE,DataStoreResources.model_valid);
|
clientTicket.setAttribute(DE.A_VALUE,DataStoreResources.model_valid);
|
||||||
|
|
Loading…
Add table
Reference in a new issue