mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-12-12 14:01:08 +01:00
Add missing break statements
This commit is contained in:
parent
5e86db4f80
commit
451eb4c826
7 changed files with 8 additions and 0 deletions
|
|
@ -254,10 +254,12 @@ public class VCardProvider extends IQProvider<VCard> {
|
|||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case XmlPullParser.END_TAG:
|
||||
if (parser.getDepth() == initialDepth) {
|
||||
break outerloop;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue