ib.automata-build-tools.0.7.0.source-code.automatalib-findbugs-exclusions.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2013-2018 TU Dortmund This file is part of AutomataLib, http://www.automatalib.net/. 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. --> <FindBugsFilter> <Match> <!-- TODO: mostly due to performance. However, usage should be checked again --> <Bug pattern="EI_EXPOSE_REP2"/> <Or> <Class name="net.automatalib.commons.util.array.RichArray"/> <Class name="net.automatalib.commons.util.array.ArrayIterator"/> <Class name="net.automatalib.util.partitionrefinement.PaigeTarjan"/> </Or> </Match> <Match> <!-- mostly internal structures, where this behavior is fine --> <Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS"/> <Or> <Class name="net.automatalib.commons.smartcollections.BackedGeneralPriorityQueue$Entry"/> <Class name="net.automatalib.util.graphs.sssp.DijkstraSSSP$Record"/> </Or> </Match> <Match> <!-- fields are accessed from classes in other maven modules which is not detected by findBugs --> <Bug pattern="UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD,UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD,URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"/> <Or> <Class name="net.automatalib.commons.util.Holder"/> <!-- TODO: may be removed, since Guava offers similar type of AbstractIterator --> <Class name="net.automatalib.commons.util.collections.AbstractSimplifiedIterator"/> <Class name="net.automatalib.graphs.base.compact.CompactBidiEdge"/> <Class name="net.automatalib.graphs.base.compact.CompactEdge"/> </Or> </Match> <Match> <Bug pattern="CN_IDIOM_NO_SUPER_CALL"/> <!-- we want to cut cloning hierarchy here --> <Class name="net.automatalib.commons.util.array.RichArray"/> </Match> <Match> <!-- TODO: this module/package currently contains generated javaCC code, we cannot easily change --> <Or> <Package name="~net\.automatalib\.serialization\.taf.*"/> <Class name="net.automatalib.tools.taf.TAF2DOT"/> </Or> <Bug pattern="DM_DEFAULT_ENCODING,URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD,SBSC_USE_STRINGBUFFER_CONCATENATION,SF_SWITCH_NO_DEFAULT,EI_EXPOSE_REP2,VA_FORMAT_STRING_USES_NEWLINE"/> </Match> </FindBugsFilter>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy