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

Commit 189de282 authored by Gilles Debunne's avatar Gilles Debunne Committed by Android (Google) Code Review
Browse files

Merge "Fix for a Resource system bug that displayed the wrong name for missing...

Merge "Fix for a Resource system bug that displayed the wrong name for missing asset." into gingerbread
parents 18ef3725 75399683
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -708,9 +708,7 @@ public class TypedArray {
        outValue.resourceId = data[index+AssetManager.STYLE_RESOURCE_ID];
        outValue.changingConfigurations = data[index+AssetManager.STYLE_CHANGING_CONFIGURATIONS];
        outValue.density = data[index+AssetManager.STYLE_DENSITY];
        if (type == TypedValue.TYPE_STRING) {
            outValue.string = loadStringValueAt(index);
        }
        outValue.string = (type == TypedValue.TYPE_STRING) ? loadStringValueAt(index) : null;
        return true;
    }