View | Details | Raw Unified | Return to bug 30953
Collapse All | Expand All

(-)PropertySet.java (-1 / +1 lines)
Lines 676-682 Link Here
676
        b.append(", sections: [\n");
676
        b.append(", sections: [\n");
677
        final List sections = getSections();
677
        final List sections = getSections();
678
        for (int i = 0; i < sectionCount; i++)
678
        for (int i = 0; i < sectionCount; i++)
679
            b.append(((Section) sections.get(0)).toString());
679
            b.append(((Section) sections.get(i)).toString());
680
        b.append(']');
680
        b.append(']');
681
        b.append(']');
681
        b.append(']');
682
        return b.toString();
682
        return b.toString();

Return to bug 30953