git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9f73d5
)
JAL-3409 Add newline back into Buffered Reader in getdown launcher.log
author
Ben Soares
<b.soares@dundee.ac.uk>
Fri, 17 May 2024 13:48:01 +0000
(14:48 +0100)
committer
Ben Soares
<b.soares@dundee.ac.uk>
Fri, 17 May 2024 13:48:01 +0000
(14:48 +0100)
getdown/lib/getdown-core.jar
patch
|
blob
|
history
getdown/lib/getdown-launcher-local.jar
patch
|
blob
|
history
getdown/lib/getdown-launcher.jar
patch
|
blob
|
history
getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java
patch
|
blob
|
history
j11lib/getdown-core.jar
patch
|
blob
|
history
j8lib/getdown-core.jar
patch
|
blob
|
history
diff --git
a/getdown/lib/getdown-core.jar
b/getdown/lib/getdown-core.jar
index
bf6cfe2
..
fdc94f1
100644
(file)
Binary files a/getdown/lib/getdown-core.jar and b/getdown/lib/getdown-core.jar differ
diff --git
a/getdown/lib/getdown-launcher-local.jar
b/getdown/lib/getdown-launcher-local.jar
index
fae4504
..
1886978
100644
(file)
Binary files a/getdown/lib/getdown-launcher-local.jar and b/getdown/lib/getdown-launcher-local.jar differ
diff --git
a/getdown/lib/getdown-launcher.jar
b/getdown/lib/getdown-launcher.jar
index
334be09
..
1bc7015
100644
(file)
Binary files a/getdown/lib/getdown-launcher.jar and b/getdown/lib/getdown-launcher.jar differ
diff --git
a/getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java
b/getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java
index
01bf370
..
ed5570c
100644
(file)
--- a/
getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java
+++ b/
getdown/src/getdown/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java
@@
-1060,7
+1060,7
@@
public abstract class Getdown extends Thread
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) != null) {
- out.print(line);
+ out.println(line);
out.flush();
}
} catch (IOException ioe) {
diff --git
a/j11lib/getdown-core.jar
b/j11lib/getdown-core.jar
index
bf6cfe2
..
fdc94f1
100644
(file)
Binary files a/j11lib/getdown-core.jar and b/j11lib/getdown-core.jar differ
diff --git
a/j8lib/getdown-core.jar
b/j8lib/getdown-core.jar
index
bf6cfe2
..
fdc94f1
100644
(file)
Binary files a/j8lib/getdown-core.jar and b/j8lib/getdown-core.jar differ