am 0b3be03c: am 4186c977: Merge "Don\'t write IntentFilter autoVerify field to xml if false." into mnc-dev

* commit '0b3be03c29ee46838af6ee7e436f3bc935dc7288':
  Don't write IntentFilter autoVerify field to xml if false.
This commit is contained in:
Wale Ogunwale
2015-06-19 16:59:11 +00:00
committed by Android Git Automerger

View File

@@ -1480,7 +1480,11 @@ public class IntentFilter implements Parcelable {
* Write the contents of the IntentFilter as an XML stream.
*/
public void writeToXml(XmlSerializer serializer) throws IOException {
serializer.attribute(null, AUTO_VERIFY_STR, Boolean.toString(getAutoVerify()));
if (getAutoVerify()) {
serializer.attribute(null, AUTO_VERIFY_STR, Boolean.toString(true));
}
int N = countActions();
for (int i=0; i<N; i++) {
serializer.startTag(null, ACTION_STR);