From aaa723ffafd7c33cd5399efd5ea4608fd340dfcd Mon Sep 17 00:00:00 2001 From: Gaston Dombiak Date: Wed, 3 Aug 2005 02:32:02 +0000 Subject: [PATCH] #parseProperties is now public. SMACK-68 git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2517 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/util/PacketParserUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/org/jivesoftware/smack/util/PacketParserUtils.java b/source/org/jivesoftware/smack/util/PacketParserUtils.java index 374253dfe..764d67f99 100644 --- a/source/org/jivesoftware/smack/util/PacketParserUtils.java +++ b/source/org/jivesoftware/smack/util/PacketParserUtils.java @@ -198,7 +198,7 @@ public class PacketParserUtils { * @return a map of the properties. * @throws Exception if an error occurs while parsing the properties. */ - private static Map parseProperties(XmlPullParser parser) throws Exception { + public static Map parseProperties(XmlPullParser parser) throws Exception { Map properties = new HashMap(); while (true) { int eventType = parser.next();