Fix array-related errorprone warnings

The ArrayEquals, ArrayHashCode, ArrayToString, and
ArraysAsListPrimitiveArray errorprone findings were
demoted from errors to warnings. Fix existing
occurrences of them so they can be made errors again.

Bug: 242630963
Test: RUN_ERROR_PRONE=true m javac-check
Change-Id: I8a507da97e99a7e86577fda91960dd477c0a6af4
This commit is contained in:
Cole Faust
2022-08-15 15:03:07 -07:00
parent aee8039030
commit 1aba0b0461

View File

@@ -131,7 +131,7 @@ public class ContactUtilTest extends BugleTestCase {
} while (cur.moveToNext());
}
} catch (final Exception e) {
System.out.println(e.getStackTrace());
LogUtil.e(LogUtil.BUGLE_TAG, "Failed to delete test contacts", e);
}
}