blob: e95e3a81a37b2b21e19a3ff622bbb487195510de [file] [log] [blame] [edit]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!-- FindBugs exclude list for JavaMail gimap provider -->
<FindBugsFilter>
<!--
These returned arrays are never exposed to applications so it's
safe that it doesn't return a copy.
-->
<Match>
<Class name="com.sun.mail.gimap.protocol.GmailProtocol"/>
<Method name="getFetchItems"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<!--
The setLabels method needs to be synchronized because of its
use of the protocol object. The getLabels method depends on
the getItem method to do the synchronization.
-->
<Match>
<Class name="com.sun.mail.gimap.GmailMessage"/>
<Method name="getLabels"/>
<Bug pattern="UG_SYNC_SET_UNSYNC_GET"/>
</Match>
</FindBugsFilter>