mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 20:45:22 +02:00
[206642] dstore bug fixes merged to open rse
This commit is contained in:
parent
9b3d89b110
commit
17fc645844
2 changed files with 9 additions and 6 deletions
|
@ -3962,8 +3962,8 @@ public final class DataStore
|
||||||
{
|
{
|
||||||
// dy: the call to flush deletes all the elements in the tree
|
// dy: the call to flush deletes all the elements in the tree
|
||||||
// which causes havoc for iSeries caching when switching between offline / online
|
// which causes havoc for iSeries caching when switching between offline / online
|
||||||
if (isVirtual())
|
//if (isVirtual())
|
||||||
flush();
|
// flush();
|
||||||
|
|
||||||
|
|
||||||
if (_tracingOn)
|
if (_tracingOn)
|
||||||
|
|
|
@ -293,12 +293,15 @@ public class ServerLauncher extends Thread {
|
||||||
_errReader = new BufferedReader(new InputStreamReader(_serverProcess.getErrorStream()));
|
_errReader = new BufferedReader(new InputStreamReader(_serverProcess.getErrorStream()));
|
||||||
BufferedWriter inWriter = new BufferedWriter(new OutputStreamWriter(_serverProcess.getOutputStream()));
|
BufferedWriter inWriter = new BufferedWriter(new OutputStreamWriter(_serverProcess.getOutputStream()));
|
||||||
// write password
|
// write password
|
||||||
|
if (password != null)
|
||||||
|
{
|
||||||
inWriter.write(password);
|
inWriter.write(password);
|
||||||
inWriter.newLine();
|
inWriter.newLine();
|
||||||
inWriter.flush();
|
inWriter.flush();
|
||||||
|
|
||||||
launchStatus = _outReader.readLine();
|
launchStatus = _outReader.readLine();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue