Merge branch 'stable-2.16' into stable-3.0

* stable-2.16:
  Make toString(), hashCode(), equals() and friends final in AutoValue classes
  Schema_169: Increase log severity level
  Schema_146: Fix FutureReturnValueIgnored warning flagged by error prone
  Fix various usages of the Flogger API
  Schema_169: Fix usage of Flogger to log exception stack trace
  Keep alive database connection to prevent exceeding wait timeout

Change-Id: Ic8885a66acb123b52a30a74a63a2b2e5411dd453
This commit is contained in:
David Pursehouse
2020-04-27 14:27:27 +09:00
13 changed files with 19 additions and 17 deletions

View File

@@ -141,7 +141,7 @@ public class SectionSortCache {
}
@Override
public int hashCode() {
public final int hashCode() {
return cachedHashCode();
}
}