1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

[402555] RSE default local host should not be deletable from UI

This commit is contained in:
David McKnight 2013-03-06 16:18:15 -05:00
parent af28c57263
commit ba9957d7da

View file

@ -1,5 +1,5 @@
/******************************************************************************** /********************************************************************************
* Copyright (c) 2002, 2009 IBM Corporation and others. All rights reserved. * Copyright (c) 2002, 2013 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the terms * This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is * of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html * available at http://www.eclipse.org/legal/epl-v10.html
@ -36,6 +36,7 @@
* David McKnight (IBM) - [226324] Default user ID from preferences not inherited * David McKnight (IBM) - [226324] Default user ID from preferences not inherited
* David McKnight (IBM) - [196166] [usability][dnd] Changing the sort order of hosts in the SystemView should work by drag & drop * David McKnight (IBM) - [196166] [usability][dnd] Changing the sort order of hosts in the SystemView should work by drag & drop
* David McKnight (IBM) - [286230] [dnd] Dropping resources on host nodes leads to classcast exception * David McKnight (IBM) - [286230] [dnd] Dropping resources on host nodes leads to classcast exception
* David McKnight (IBM) - [402555] RSE default local host should not be deletable from UI
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.ui.view; package org.eclipse.rse.internal.ui.view;
@ -619,6 +620,11 @@ public class SystemViewConnectionAdapter
if (ss[i].isConnected() && ss[i].getSubSystemConfiguration().supportsSubSystemConnect()) if (ss[i].isConnected() && ss[i].getSubSystemConfiguration().supportsSubSystemConnect())
return false; return false;
} }
if (host == sr.getLocalHost()){
return false; // don't allow deleting the default local host
}
} }
return true; return true;
} }