Skip to content

Commit bc585db

Browse files
Sulilmsv-mx123
Suli
authored andcommitted
Java 5 compat + jar compiled for Java 1.5
1 parent 3dc791a commit bc585db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<target name="compile">
1313
<mkdir dir="${main.build.dir}" />
14-
<javac source="1.4" target="1.4" srcdir="${main.src.dir}" destdir="${main.build.dir}" includeantruntime="false" encoding="UTF-8">
14+
<javac source="1.5" target="1.5" srcdir="${main.src.dir}" destdir="${main.build.dir}" includeantruntime="false" encoding="UTF-8">
1515
</javac>
1616
</target>
1717

rune.jar

842 Bytes
Binary file not shown.

src/com/projectjava/winrune/WinRune.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,14 +359,14 @@ public void eventDispatched(AWTEvent event) {
359359
PrintStream stdoutCapture = new PrintStream(new OutputStream() {
360360
// Do not debug this section with System.out.println, since this captures System.out.println. You will get a Stack overflow!
361361
StringBuilder sb = new StringBuilder();
362-
String usingDefaultLoad = "Using default load" + System.lineSeparator();
362+
String usingDefaultLoad = "Using default load" + System.getProperty("line.separator");
363363
int logCount = 0;
364364
int logsBeforeSettingPort = 11;
365365

366366
public void write(int b) {
367367
sb.append((char) b);
368368
// Check if the StringBuilder contains a newline
369-
if (!sb.toString().endsWith(System.lineSeparator())) return;
369+
if (!sb.toString().endsWith(System.getProperty("line.separator"))) return;
370370

371371
String line = sb.toString();
372372

0 commit comments

Comments
 (0)