findbugs.findbugs-exclude.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L %% Copyright (C) 2011 - 2017 BMW Car IT GmbH %% Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #L% --> <FindBugsFilter> <Match> <Class name="~.*\.R\$.*"/> <Bug code="Nm"/> </Match> <!-- Removes all Null-Pointer warnings from demo applications code: --> <Match> <Package name="~.*\.demoApplications.*" /> <Bug code="NP"/> </Match> <Match> <Class name="io.joynr.systemintegrationtest.ConsumerApplication" /> <Or> <Method name ="run" /> <Method name ="shutdown" /> </Or> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.systemintegrationtest.ProviderApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.performance.AsyncResponseCounterCallback" /> <Or> <Method name ="acquire" /> <Method name ="waitForNumberOfResponses" /> </Or> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.performance.ConsumerApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.performance.EchoProviderApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.test.interlanguage.IltProviderApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.demo.MyRadioConsumerApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.demo.MyRadioProviderApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.examples.android_example.MyGpsProviderApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.examples.android_example.MyGpsProviderApplication" /> <Bug pattern="DM_DEFAULT_ENCODING"/> </Match> <Match> <Class name="io.joynr.examples.android_location_provider.GpsConsumerApplication" /> <Method name ="shutdown" /> <Bug pattern="DM_EXIT"/> </Match> <Match> <Class name="io.joynr.examples.android_location_provider.GpsConsumerApplication" /> <Method name ="pressQEnterToContinue" /> <Bug pattern="DM_DEFAULT_ENCODING"/> </Match> <Match> <Class name="io.joynr.runtime.PropertyLoader" /> <Method name ="loadResource" /> <Bug pattern="OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE"/> </Match> <!-- Nm: Class is not derived from an Exception, even though it is named as such --> <Match> <Class name="joynr.system.JoynrLoggedException" /> <Bug pattern="NM_CLASS_NOT_EXCEPTION"/> </Match> <Match> <Class name="io.joynr.jeeintegration.context.JoynrJeeMessageContext" /> <Bug pattern="DC_DOUBLECHECK"/> </Match> <Match> <Class name="io.joynr.integration.AbstractSubscriptionEnd2EndTest" /> <Bug pattern="NP_NULL_ON_SOME_PATH_EXCEPTION"/> </Match> <Match> <Class name="io.joynr.messaging.sender.AbstractMessageSender" /> <Or> <Field name="replyToAddress"/> <Field name="globalAddress"/> </Or> <Bug pattern="IS2_INCONSISTENT_SYNC"/> </Match> <Match> <Class name="io.joynr.capabilities.GcdTask" /> <Bug pattern="EI_EXPOSE_REP"/> </Match> <Match> <Class name="io.joynr.messaging.routing.LibJoynrMessageRouter" /> <Field name="ready"/> <Bug pattern="IS2_INCONSISTENT_SYNC"/> </Match> <Match> <Class name="io.joynr.messaging.info.PerformanceMeasures" /> <Bug pattern="NP_NONNULL_RETURN_VIOLATION"/> </Match> <Match> <Class name="io.joynr.proxy.invocation.StatelessAsyncMethodInvocation" /> <Bug pattern="EI_EXPOSE_REP"/> </Match> <Match> <Class name="io.joynr.runtime.AbstractRuntimeModule" /> <Bug pattern="URF_UNREAD_FIELD"/> </Match> <Match> <Class name="joynr.Reply" /> <Bug pattern="EI_EXPOSE_REP"/> </Match> <Match> <Class name="io.joynr.messaging.mqtt.hivemq.client.HivemqMqttClient" /> <Bug pattern="RV_RETURN_VALUE_IGNORED"/> </Match> <!-- remove all null pointer warnings from tests --> <Match> <Class name="~.*\.*Tests" /> <Bug code="NP" /> </Match> <Match> <Class name="~.*\.*Test" /> <Bug code="NP" /> </Match> </FindBugsFilter>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy