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

* commit '4186c977eba743bd8718e03326db5c025fd0ccc2':
  Don't write IntentFilter autoVerify field to xml if false.
This commit is contained in:
Wale Ogunwale
2015-06-19 16:44:54 +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);