blob: 2ebfa1de18b13d82ccdb815b29d9b9d7299a9f40 [file] [log] [blame]
Ray Milkey241b96a2014-11-17 13:08:20 -08001<!--
2 ~ Copyright 2014 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<FindBugsFilter>
17
18 <!-- False positives on calls to CompletableFuture methods with a null
19 parameter -->
20 <Match>
Brian O'Connorabafb502014-12-02 22:26:20 -080021 <Class name="~org\.onosproject\.store\.service\.impl\..*" />
Ray Milkey241b96a2014-11-17 13:08:20 -080022 <Bug pattern="NP_NONNULL_PARAM_VIOLATION" />
23 </Match>
24
25 <!-- Filter out testing application -->
26 <Match>
Brian O'Connorabafb502014-12-02 22:26:20 -080027 <Class name="~org\.onosproject\.foo\..*" />
Ray Milkey241b96a2014-11-17 13:08:20 -080028 </Match>
29
30</FindBugsFilter>