Removing test file that I didn't mean to add in r355.

This commit is contained in:
Joel Leitch 2008-12-28 23:14:44 +00:00
parent 73d93e3322
commit 9612bb3601

View File

@ -1,12 +0,0 @@
package com.google.gson;
public class TestCharacters {
public static void main(String[] args) {
System.out.println("\\b: " + Character.codePointAt("\b", 0));
System.out.println("\\r: " + Character.codePointAt("\r", 0));
System.out.println("\\n: " + Character.codePointAt("\n", 0));
System.out.println("\\t: " + Character.codePointAt("\t", 0));
System.out.println("': " + Character.codePointAt("'", 0));
}
}