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

Commit 37f7faeb authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update CollectionInfo comment to indicate -1 is ambiguous count."

parents 6c0c2ad9 209eb498
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -4745,8 +4745,8 @@ public class AccessibilityNodeInfo implements Parcelable {
        /**
         * Obtains a pooled instance.
         *
         * @param rowCount The number of rows.
         * @param columnCount The number of columns.
         * @param rowCount The number of rows, or -1 if count is unknown.
         * @param columnCount The number of columns, or -1 if count is unknown.
         * @param hierarchical Whether the collection is hierarchical.
         */
        public static CollectionInfo obtain(int rowCount, int columnCount,
@@ -4800,7 +4800,7 @@ public class AccessibilityNodeInfo implements Parcelable {
        /**
         * Gets the number of rows.
         *
         * @return The row count.
         * @return The row count, or -1 if count is unknown.
         */
        public int getRowCount() {
            return mRowCount;
@@ -4809,7 +4809,7 @@ public class AccessibilityNodeInfo implements Parcelable {
        /**
         * Gets the number of columns.
         *
         * @return The column count.
         * @return The column count, or -1 if count is unknown.
         */
        public int getColumnCount() {
            return mColumnCount;