1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

[164202] fix for manual connection - need to handle null ticket case

This commit is contained in:
David McKnight 2006-11-23 17:55:25 +00:00
parent 410d9913e1
commit 29a42ceef1

View file

@ -207,7 +207,7 @@ public class ServerCommandHandler extends CommandHandler
String st = serverTicket.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);
clientTicket.setAttribute(DE.A_VALUE,DataStoreResources.model_valid);