mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-27 19:05:38 +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
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
if (_dataStore != null && object != null)
|
if (_dataStore != null && object != null && !object.isDeleted())
|
||||||
{
|
{
|
||||||
if (object.getType().equals(DataStoreResources.model_status))
|
if (object.getType().equals(DataStoreResources.model_status))
|
||||||
{
|
{
|
||||||
|
|
|
@ -340,7 +340,6 @@ public class ConnectionEstablisher
|
||||||
_dataStore.setSSLProperties(sslProperties);
|
_dataStore.setSSLProperties(sslProperties);
|
||||||
|
|
||||||
DataElement ticket = _dataStore.getTicket();
|
DataElement ticket = _dataStore.getTicket();
|
||||||
System.out.println("ticket="+ticketStr); //$NON-NLS-1$
|
|
||||||
ticket.setAttribute(DE.A_NAME, ticketStr);
|
ticket.setAttribute(DE.A_NAME, ticketStr);
|
||||||
|
|
||||||
_updateHandler.setDataStore(_dataStore);
|
_updateHandler.setDataStore(_dataStore);
|
||||||
|
|
|
@ -198,7 +198,6 @@ public class ServerCommandHandler extends CommandHandler
|
||||||
String commandSource = command.getSource();
|
String commandSource = command.getSource();
|
||||||
String commandName = command.getName();
|
String commandName = command.getName();
|
||||||
|
|
||||||
|
|
||||||
if (commandName.equals(DataStoreSchema.C_VALIDATE_TICKET))
|
if (commandName.equals(DataStoreSchema.C_VALIDATE_TICKET))
|
||||||
{
|
{
|
||||||
DataElement serverTicket = _dataStore.getTicket();
|
DataElement serverTicket = _dataStore.getTicket();
|
||||||
|
|
Loading…
Add table
Reference in a new issue