Skip to content

Commit

Permalink
Merge branch 'findbugs' into spotbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
mebigfatguy committed Jun 16, 2018
2 parents 042080d + 27256dd commit 45001aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
</path>
</target>

<target name="validate_xml" depends="-init" description="validates the xml files">
<target name="validate_xml" depends="-init" unless="skip-validate" description="validates the xml files">
<taskdef name="bug-rank-check-style" classname="text.style.check.BugRankCheckStyleTask"/>
<xmlvalidate lenient="false" failonerror="yes">
<attribute name="http://apache.org/xml/features/validation/schema" value="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ReflectionIssues extends BytecodeScanningDetector {

private static final QMethod SETACCESSIBLE = new QMethod("setAccessible", SignatureBuilder.SIG_BOOLEAN_TO_VOID);
private static final FQMethod SETACCESSIBLE_ARRAY = new FQMethod("java/lang/reflect/AccessibleObject", "setAccessible",
new SignatureBuilder().withParamTypes(AccessibleObject.class).build());
new SignatureBuilder().withParamTypes(AccessibleObject[].class).build());
private static final JavaClass ACCESSIBLE_OBJECT_CLASS;

static {
Expand Down

0 comments on commit 45001aa

Please sign in to comment.