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

[206642] dstore bug fixes merged to open rse

This commit is contained in:
David McKnight 2007-10-17 16:18:54 +00:00
parent 9b3d89b110
commit 17fc645844
2 changed files with 9 additions and 6 deletions

View file

@ -3962,8 +3962,8 @@ public final class DataStore
{
// dy: the call to flush deletes all the elements in the tree
// which causes havoc for iSeries caching when switching between offline / online
if (isVirtual())
flush();
//if (isVirtual())
// flush();
if (_tracingOn)

View file

@ -293,11 +293,14 @@ public class ServerLauncher extends Thread {
_errReader = new BufferedReader(new InputStreamReader(_serverProcess.getErrorStream()));
BufferedWriter inWriter = new BufferedWriter(new OutputStreamWriter(_serverProcess.getOutputStream()));
// write password
inWriter.write(password);
inWriter.newLine();
inWriter.flush();
if (password != null)
{
inWriter.write(password);
inWriter.newLine();
inWriter.flush();
launchStatus = _outReader.readLine();
launchStatus = _outReader.readLine();
}
}
else
{