Commit dea5f1e5 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added tab character as heartbeat indicator. JM-549

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3371 b35dd754-fafc-0310-a699-88a17e54d16e
parent ba1519b0
...@@ -264,7 +264,8 @@ public class MXParser extends org.xmlpull.mxp1.MXParser { ...@@ -264,7 +264,8 @@ public class MXParser extends org.xmlpull.mxp1.MXParser {
do { do {
// check that ]]> does not show in // check that ]]> does not show in
if (eventType == XmlPullParser.END_TAG && (ch == ' ' || ch == '\n')) { if (eventType == XmlPullParser.END_TAG &&
(ch == ' ' || ch == '\n' || ch == '\t')) {
// ** ADDED CODE (INCLUDING IF STATEMENT) // ** ADDED CODE (INCLUDING IF STATEMENT)
lastHeartbeat = System.currentTimeMillis();; lastHeartbeat = System.currentTimeMillis();;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment