Skip to content

Commit

Permalink
buildfile cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mitzimorris committed Dec 5, 2013
1 parent 3133838 commit 610809f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/intro/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

<target name="clean">
<delete dir="build"/>
<delete file="toast.txt"/>
</target>

<target name="jar">
Expand Down
2 changes: 2 additions & 0 deletions src/intro/src/com/colloquial/intro/ConfigTest.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package com.colloquial.intro;
import java.io.PrintStream;
public class ConfigTest {
public static void main(String[] args) throws Exception {
/*x ConfigTest.1*/
System.setOut(new PrintStream(System.out,true,"UTF-8"));
byte[] bs = "small a: a\n".getBytes("UTF-8");
System.out.write(bs,0,bs.length);
bs = "small a with grave accent: \u00E0\n".getBytes("UTF-8");
Expand Down

0 comments on commit 610809f

Please sign in to comment.