Silence Eclipse warning about unthrown Exception

git-svn-id: https://svn.apache.org/repos/asf/commons/sandbox/csv/trunk@1298217 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-07 23:35:46 +00:00
parent 660f37a20a
commit 78d3d98406
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ public class CSVParserTest extends TestCase {
}
public void testUnicodeEscape() throws IOException {
public void testUnicodeEscape() throws Exception {
String code = "abc,\\u0070\\u0075\\u0062\\u006C\\u0069\\u0063";
CSVParser parser = new CSVParser(code, CSVFormat.DEFAULT.withUnicodeEscapesInterpreted(true));
String[] data = parser.iterator().next();