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

Commit 6c1ddedf authored by Ken Shirriff's avatar Ken Shirriff Committed by Android (Google) Code Review
Browse files

Merge "Fix ExtendedProperties EntityIterator."

parents a3b95a99 3b16892c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -744,9 +744,10 @@ public final class Calendar {
                try {
                    while (subCursor.moveToNext()) {
                        ContentValues extendedValues = new ContentValues();
                        extendedValues.put(ExtendedProperties.NAME, cursor.getString(COLUMN_NAME));
                        extendedValues.put(ExtendedProperties.NAME,
                                subCursor.getString(COLUMN_NAME));
                        extendedValues.put(ExtendedProperties.VALUE,
                                cursor.getString(COLUMN_VALUE));
                                subCursor.getString(COLUMN_VALUE));
                        entity.addSubValue(ExtendedProperties.CONTENT_URI, extendedValues);
                    }
                } finally {