Fix XML importer test to handle new exception being thrown

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2249 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-09-19 15:34:29 +00:00
parent 82cc76f076
commit f309a26a95

View File

@ -446,6 +446,8 @@ public class XmlImportUtilitiesTests extends RefineTest {
return parser;
} catch (XMLStreamException e) {
return null;
} catch (IOException e) {
return null;
}
}
public TreeReader createJsonParser(){