如何排除 findbugs 中的构造函数?
How to exclude a constructor in findbugs?
我可以在我的 findbugs 中排除这样的常规方法-exclude.xml:
<Match>
<Class name="com.my.package.MyClass"/>
<Method name="calculateSomeValue"/>
<Bug pattern="CLI_CONSTANT_LIST_INDEX"/>
</Match>
但是如果我想忽略构造函数中标记的错误模式怎么办?
我试过了
<Method name="MyClass"/>
和
<Method name="new"/>
这似乎不起作用。
MyClass 只定义了一个构造函数。
您必须将此代码用于排除构造函数
<Method name="<init>"/>
我可以在我的 findbugs 中排除这样的常规方法-exclude.xml:
<Match>
<Class name="com.my.package.MyClass"/>
<Method name="calculateSomeValue"/>
<Bug pattern="CLI_CONSTANT_LIST_INDEX"/>
</Match>
但是如果我想忽略构造函数中标记的错误模式怎么办?
我试过了
<Method name="MyClass"/>
和
<Method name="new"/>
这似乎不起作用。
MyClass 只定义了一个构造函数。
您必须将此代码用于排除构造函数
<Method name="<init>"/>