mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
[mam] Delete unused local variable 'iqType' in MamPrefsIQProvider
This commit is contained in:
parent
001985647a
commit
613f1afcab
1 changed files with 0 additions and 5 deletions
|
@ -43,17 +43,12 @@ public class MamPrefsIQProvider extends IQProvider<MamPrefsIQ> {
|
|||
|
||||
@Override
|
||||
public MamPrefsIQ parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) throws XmlPullParserException, IOException {
|
||||
String iqType = parser.getAttributeValue("", "type");
|
||||
String defaultBehaviorString = parser.getAttributeValue("", "default");
|
||||
DefaultBehavior defaultBehavior = null;
|
||||
if (defaultBehaviorString != null) {
|
||||
defaultBehavior = DefaultBehavior.valueOf(defaultBehaviorString);
|
||||
}
|
||||
|
||||
if (iqType == null) {
|
||||
iqType = "result";
|
||||
}
|
||||
|
||||
List<Jid> alwaysJids = null;
|
||||
List<Jid> neverJids = null;
|
||||
|
||||
|
|
Loading…
Reference in a new issue