File tree 3 files changed +3
-3
lines changed
src/com/projectjava/winrune
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
<target name =" compile" >
13
13
<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" >
15
15
</javac >
16
16
</target >
17
17
Original file line number Diff line number Diff line change @@ -359,14 +359,14 @@ public void eventDispatched(AWTEvent event) {
359
359
PrintStream stdoutCapture = new PrintStream (new OutputStream () {
360
360
// Do not debug this section with System.out.println, since this captures System.out.println. You will get a Stack overflow!
361
361
StringBuilder sb = new StringBuilder ();
362
- String usingDefaultLoad = "Using default load" + System .lineSeparator ( );
362
+ String usingDefaultLoad = "Using default load" + System .getProperty ( "line.separator" );
363
363
int logCount = 0 ;
364
364
int logsBeforeSettingPort = 11 ;
365
365
366
366
public void write (int b ) {
367
367
sb .append ((char ) b );
368
368
// 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 ;
370
370
371
371
String line = sb .toString ();
372
372
You can’t perform that action at this time.
0 commit comments