Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb8bc2af authored by Raphael Kim's avatar Raphael Kim Committed by Android (Google) Code Review
Browse files

Merge "[CDM] Fix association persistence XML parser logic." into main

parents fea2d5b4 950176fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -454,10 +454,10 @@ public final class AssociationDiskStore {
            @NonNull Associations associations)
            throws IOException {
        final XmlSerializer serializer = parent.startTag(null, XML_TAG_ASSOCIATIONS);
        writeIntAttribute(serializer, XML_ATTR_MAX_ID, associations.getMaxId());
        for (AssociationInfo association : associations.getAssociations()) {
            writeAssociation(serializer, association);
        }
        writeIntAttribute(serializer, XML_ATTR_MAX_ID, associations.getMaxId());
        serializer.endTag(null, XML_TAG_ASSOCIATIONS);
    }