xref: /aosp_15_r20/external/aws-sdk-java-v2/build-tools/src/main/resources/findbugs.xml (revision 8a52c7834d808308836a99fc2a6e0ed8db339086)
1*8a52c783SCole Faust<!--
2*8a52c783SCole Faust  ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3*8a52c783SCole Faust  ~
4*8a52c783SCole Faust  ~ Licensed under the Apache License, Version 2.0 (the "License").
5*8a52c783SCole Faust  ~ You may not use this file except in compliance with the License.
6*8a52c783SCole Faust  ~ A copy of the License is located at
7*8a52c783SCole Faust  ~
8*8a52c783SCole Faust  ~  http://aws.amazon.com/apache2.0
9*8a52c783SCole Faust  ~
10*8a52c783SCole Faust  ~ or in the "license" file accompanying this file. This file is distributed
11*8a52c783SCole Faust  ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12*8a52c783SCole Faust  ~ express or implied. See the License for the specific language governing
13*8a52c783SCole Faust  ~ permissions and limitations under the License.
14*8a52c783SCole Faust  -->
15*8a52c783SCole Faust
16*8a52c783SCole Faust<FindbugsPlugin>
17*8a52c783SCole Faust    <Detector class="software.amazon.awssdk.buildtools.findbugs.DisallowMethodCall" speed="fast" />
18*8a52c783SCole Faust    <Detector class="software.amazon.awssdk.buildtools.findbugs.ToBuilderIsCorrect" speed="fast" />
19*8a52c783SCole Faust
20*8a52c783SCole Faust    <BugPattern abbrev="BM" type="SDK_BAD_METHOD_CALL" category="PERFORMANCE" />
21*8a52c783SCole Faust    <BugPattern abbrev="BTB" type="BAD_TO_BUILDER" category="BUG" />
22*8a52c783SCole Faust</FindbugsPlugin>
23