mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +02:00
cleanup a couple dstore things
This commit is contained in:
parent
e88962a966
commit
119d7c5588
3 changed files with 1 additions and 3 deletions
|
@ -138,7 +138,7 @@ public abstract class UpdateHandler extends Handler
|
|||
else
|
||||
{
|
||||
|
||||
if (_dataStore != null && object != null)
|
||||
if (_dataStore != null && object != null && !object.isDeleted())
|
||||
{
|
||||
if (object.getType().equals(DataStoreResources.model_status))
|
||||
{
|
||||
|
|
|
@ -340,7 +340,6 @@ public class ConnectionEstablisher
|
|||
_dataStore.setSSLProperties(sslProperties);
|
||||
|
||||
DataElement ticket = _dataStore.getTicket();
|
||||
System.out.println("ticket="+ticketStr); //$NON-NLS-1$
|
||||
ticket.setAttribute(DE.A_NAME, ticketStr);
|
||||
|
||||
_updateHandler.setDataStore(_dataStore);
|
||||
|
|
|
@ -198,7 +198,6 @@ public class ServerCommandHandler extends CommandHandler
|
|||
String commandSource = command.getSource();
|
||||
String commandName = command.getName();
|
||||
|
||||
|
||||
if (commandName.equals(DataStoreSchema.C_VALIDATE_TICKET))
|
||||
{
|
||||
DataElement serverTicket = _dataStore.getTicket();
|
||||
|
|
Loading…
Add table
Reference in a new issue