Skip to content

Commit

Permalink
Merge pull request #271 from bmurray7/utf8
Browse files Browse the repository at this point in the history
Explicitly set UTF-8 encoding for Java source files.
  • Loading branch information
hrj authored Mar 31, 2021
2 parents 4475ecf + 83f947e commit 6db3f64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HTML_Renderer/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</target>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}">
<javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false" source="${source}" target="${target}" encoding="UTF8">
<src path="."/>
<classpath refid="HTML_Renderer.classpath"/>
</javac>
Expand Down

0 comments on commit 6db3f64

Please sign in to comment.