summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-05-09 10:39:14 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-05-21 09:09:56 (GMT)
commitaa03065dc96ac967d662362b9e506c5bb741386a (patch)
treed3c8e9f05fa242d6c505033593b01fcca9828170 /src/com/isode/stroke/parser/PlatformXMLParserFactory.java
parent19340ddc7dc929aad094eed3f6a3cd7f84d86a4b (diff)
downloadstroke-aa03065dc96ac967d662362b9e506c5bb741386a.zip
stroke-aa03065dc96ac967d662362b9e506c5bb741386a.tar.bz2
Use the Aalto XML parser instead of XPP
Also adds a 'make test' target for the Makefile. Set the JUNIT environment variable to point to your jar if it doesn't find it.
Diffstat (limited to 'src/com/isode/stroke/parser/PlatformXMLParserFactory.java')
-rw-r--r--src/com/isode/stroke/parser/PlatformXMLParserFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/isode/stroke/parser/PlatformXMLParserFactory.java b/src/com/isode/stroke/parser/PlatformXMLParserFactory.java
index c1e44d6..000eb7f 100644
--- a/src/com/isode/stroke/parser/PlatformXMLParserFactory.java
+++ b/src/com/isode/stroke/parser/PlatformXMLParserFactory.java
@@ -16,6 +16,6 @@ public class PlatformXMLParserFactory {
* Unlike Swiften, this may be threaded, and therefore needs an eventloop.
*/
public static XMLParser createXMLParser(XMLParserClient client, EventLoop eventLoop) {
- return new PullXMLParser(client, eventLoop);
+ return new AaltoXMLParser(client, eventLoop);
}
}