aboutsummaryrefslogtreecommitdiff
path: root/findbugs-exclude.xml
AgeCommit message (Collapse)Author
2018-08-28Avoid doing string formatting when calling checkArgument. (#1394)Bogdan Drutu
2018-08-20Implement CurrentStatsState using atomic variables. (#1377)Bogdan Drutu
* Implement CurrentStatsState using atomic variables. * Ignore findbugs warning and add changelog comments.
2018-05-30Add util contrib package for AppEngine standard. (#1214)Bogdan Drutu
2018-04-04Remove usages of Guava Throwables from opencensus-api (issue #1081).Kristen Kozak
2018-04-04Remove usages of Guava Precondtions from opencensus-api (issue #1081).Kristen Kozak
This commit replaces the most commonly used precondtion checks with methods in a new utility class, io.opencensus.internal.Utils.
2018-04-04Rename "Util" classes to "Utils", for consistency with public "Utils" classes.Kristen Kozak
This commit adds an "s" to TimeUtil, StringUtil, and BaseMessageEventUtil, for consistency with utility classes that have been made public, such as ContextUtils.
2018-03-23Enable FindBugs in tests.Kristen Kozak
This would have caught the unused variable that was fixed by #1082. Changes in this commit: - Enable FindBugs in tests in build.gradle. - Fix some existing minor FindBugs issues in tests. - Suppress some warnings in all test classes that are less important in test code, such as requiring nested classes to be static whenever possible. - Enable nullness-related FindBugs warnings in tests, since we don't run the Checker Framework on test code.
2018-03-21Move BaseMessageEventUtil to trace package. (#1076)Yang Song
* Move BaseMessageEventUtil to trace package. * Move BaseMessageEventUtil to trace.internal. Work around findbugs. * Update findbugs-exclude and remove since tag.
2018-02-26Suppress all FindBugs warnings about NullPointerExceptions.Kristen Kozak
The warnings are redundant with the Checker Framework's warnings, and they sometimes conflict.
2018-02-16Add MessageEvent and deprecate NetworkEvent. (closes #858) (#894)Hailong Wen
2017-12-19Add more null annotations (issue #359).Kristen Kozak
This commit adds some Nullable annotations that are required by the Checker Framework, but it doesn't change any other code. It also suppresses some Error Prone and FindBugs warnings that conflict with the Checker Framework, since the three tools use different algorithms.
2017-09-05Implement Duration.compareTo() (#582)Yang Song
* Update Duration.compareTo() * Add check for negative duration for interval
2017-06-28Add compareTo to Timestamp. (#392)Bogdan Drutu
* Add compareTo to Timestamp. * Update Timestamp.java Javadoc edits. * Update Timestamp.java Fix the long line that broke the appveyor build. * Fix comments
2017-06-16Move stats classes to io.opencensus.stats.Kristen Kozak
The stats classes are still in different directories from tracing, so they won't be included in the next release.
2017-04-17Make Distribution and MutableDistribution package-private initially.Kristen Kozak
2017-04-17Suppress a FindBugs warning.Kristen Kozak
2017-03-24Remove bazel support for instrumentation-java. (#170)Bogdan Drutu
2016-11-17Adds FindBugs exclude file.Kristen Kozak