1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-23 04:22:05 +01:00

#parseProperties is now public. SMACK-68

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2517 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2005-08-03 02:32:02 +00:00 committed by gaston
parent 34baa2545b
commit aaa723ffaf

View file

@ -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();