| <!-- |
| |
| Copyright (c) 2012, 2023 Oracle and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Distribution License v. 1.0, which is available at |
| http://www.eclipse.org/org/documents/edl-v10.php. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
| |
| --> |
| |
| <FindBugsFilter> |
| <!-- |
| As designed |
| --> |
| <Match> |
| <Or> |
| <Class name="com.sun.istack.maven.ResourceGenMojo$LicenseCodeWriter"/> |
| <Class name="com.sun.istack.build.ResourceGenTask$LicenseCodeWriter"/> |
| </Or> |
| <Bug pattern="OS_OPEN_STREAM"/> |
| </Match> |
| |
| <!-- |
| As designed - performance |
| --> |
| <Match> |
| <Class name="com.sun.istack.localization.Localizer"/> |
| <Bug pattern="ES_COMPARING_STRINGS_WITH_EQ"/> |
| </Match> |
| |
| <!-- |
| Safer for any code changes |
| --> |
| <Match> |
| <Class name="com.sun.istack.tools.ParallelWorldClassLoader"/> |
| <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/> |
| </Match> |
| |
| <!-- |
| Code generated by maven - ignore |
| --> |
| <Match> |
| <Class name="com.sun.istack.maven.HelpMojo"/> |
| <Bug pattern="UI_INHERITANCE_UNSAFE_GETRESOURCE"/> |
| </Match> |
| |
| </FindBugsFilter> |