| commit | 6d4c4ad0dd729b15a3755246aa3e95d124078b18 | [log] [tgz] |
|---|---|---|
| author | kak <[email protected]> | Fri Jun 12 19:14:32 2020 |
| committer | Eddie Aftandilian <[email protected]> | Fri Jun 12 23:27:56 2020 |
| tree | fecc2af7a576f71b936196ea0d099d4b12c607c6 | |
| parent | 6bc4e4bbccfcdd08e8f8d665eb2aff7f2d7fae87 [diff] |
Add Thread.stop(Throwable) and java.sql.Time APIs to the DoNotCallChecker. #badtime ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=316152032
Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.
public class ShortSet { public static void main (String[] args) { Set<Short> s = new HashSet<>(); for (short i = 0; i < 100; i++) { s.add(i); s.remove(i - 1); } System.out.println(s.size()); } }
error: [CollectionIncompatibleType] Argument 'i - 1' should not be passed to this method;
its type int is not compatible with its collection's type argument Short
s.remove(i - 1);
^
(see https://errorprone.info/bugpattern/CollectionIncompatibleType)
1 error
Our documentation is at errorprone.info.
Error Prone works with Bazel, Maven, Ant, and Gradle. See our installation instructions for details.
Developing and building Error Prone is documented on the wiki.