1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[227881] [dstore][threaded] There is no chance to set client object for getUserPreferencesDirectory()

This commit is contained in:
David McKnight 2008-04-22 11:39:26 +00:00
parent 20dc1da2d7
commit 5231677a6d

View file

@ -20,6 +20,7 @@
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
* David McKnight (IBM) [224906] [dstore] changes for getting properties and doing exit due to single-process capability
* David McKnight (IBM) - [225507][api][breaking] RSE dstore API leaks non-API types
* David McKnight (IBM) - [227881] [dstore][threaded] There is no chance to set client object for getUserPreferencesDirectory()
*******************************************************************************/
package org.eclipse.dstore.core.model;
@ -4400,7 +4401,11 @@ public final class DataStore
*/
public void setClient(Client client)
{
_client = client;
if (client != _client){
_client = client;
_userPreferencesDirectory = null;
getUserPreferencesDirectory();
}
}
/**