Skip to content

Commit 4fe0cce

Browse files
committed
fix white space
1 parent 4cc297c commit 4fe0cce

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

build/jre/build.xml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,43 @@
55

66
<!-- Where can I expect to find Java Mode JARs? -->
77
<property name="java.mode" value="../../java/mode/" />
8-
8+
99
<!-- Check for JDT compiler, since this is likely a PDE build. Using
10-
it allows us to build the PDE with only a JRE on Windows and Linux.
11-
So that the core can be built independently of the PDE,
12-
use javac (the "modern" compiler) if ecj is not present. -->
10+
it allows us to build the PDE with only a JRE on Windows and Linux.
11+
So that the core can be built independently of the PDE,
12+
use javac (the "modern" compiler) if ecj is not present. -->
1313
<property name="jdt.jar" value="${java.mode}/org.eclipse.jdt.core.jar" />
14-
<condition property="build.compiler"
15-
value="org.eclipse.jdt.core.JDTCompilerAdapter"
16-
else="modern">
14+
<condition property="build.compiler"
15+
value="org.eclipse.jdt.core.JDTCompilerAdapter"
16+
else="modern">
1717
<available file="${jdt.jar}" />
1818
</condition>
1919
<!--<echo message="compiler is ${build.compiler}" />-->
2020

2121
<javac source="1.8"
22-
target="1.8"
23-
srcdir="src"
24-
destdir="bin"
25-
debug="true"
26-
includeantruntime="true"
27-
nowarn="true">
22+
target="1.8"
23+
srcdir="src"
24+
destdir="bin"
25+
debug="true"
26+
includeantruntime="true"
27+
nowarn="true">
2828
<!-- kinda gross, but if not using the JDT, this just ignored anyway -->
2929
<compilerclasspath path="${jdt.jar}; ${java.mode}/jdtCompilerAdapter.jar" />
3030
</javac>
3131
</target>
32-
32+
3333
<target name="dist" depends="compile">
3434
<jar basedir="bin" destfile="downloader.jar" />
3535
</target>
36-
36+
3737
<target name="demo" depends="dist">
38-
<taskdef name="downloader"
39-
classname="Downloader"
40-
classpath="downloader.jar" />
41-
<downloader version="8" update="31" build="13"
38+
<taskdef name="downloader"
39+
classname="Downloader"
40+
classpath="downloader.jar" />
41+
<downloader version="8" update="31" build="13"
4242
jdk="true" flavor="macosx-x64.dmg" />
4343
</target>
44-
44+
4545
<target name="clean">
4646
<delete dir="bin" />
4747
<delete file="downloader.jar" />

0 commit comments

Comments
 (0)