Applied patch 2822173: Fix false negative for UseArraysAsList when the array was passed as method parameter. Thanks to Andy Throgmorton.
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/branches/pmd/4.3.x@7400 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
parent
b60d442777
commit
14cc641316
@ -7,6 +7,7 @@ Add C# support for CPD - thanks to Florian Bauer
|
||||
Fix small bug in Rule Designer UI
|
||||
Improve TooManyMethods rule - thanks to a patch from Riku Nykanen
|
||||
Improve DoNotCallSystemExit - thanks to a patch from Steven Christou
|
||||
Fix false negative for UseArraysAsList when the array was passed as method parameter - thanks to Andy Throgmorton
|
||||
|
||||
New Rule:
|
||||
Basic ruleset: DontCallThreadRun - thanks to Andy Throgmorton
|
||||
|
@ -8,11 +8,11 @@ failure case
|
||||
<code><![CDATA[
|
||||
public class Bar {
|
||||
void foo() {
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(ints[i]);
|
||||
}
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(ints[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
@ -25,11 +25,11 @@ adding first element repeatedly
|
||||
<code><![CDATA[
|
||||
public class Bar {
|
||||
void foo() {
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(ints[1]);
|
||||
}
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(ints[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
@ -42,11 +42,11 @@ inside conditional
|
||||
<code><![CDATA[
|
||||
public class Bar {
|
||||
void foo() {
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
if (y > 10) { l.add(ints[1]);}
|
||||
}
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
if (y > 10) { l.add(ints[1]);}
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
@ -59,11 +59,11 @@ adding new object
|
||||
<code><![CDATA[
|
||||
public class Bar {
|
||||
void foo() {
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(new Integer(i+1));
|
||||
}
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(new Integer(i+1));
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
@ -76,13 +76,31 @@ calling method
|
||||
<code><![CDATA[
|
||||
public class Bar {
|
||||
void foo() {
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(String.valueOf(i));
|
||||
}
|
||||
Integer[] ints = new Integer(10);
|
||||
List l= new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(String.valueOf(i));
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
</test-code>
|
||||
</test-data>
|
||||
<test-code>
|
||||
<description>Integer array passed as argument</description>
|
||||
<expected-problems>1</expected-problems>
|
||||
<code><![CDATA[
|
||||
public class Test {
|
||||
public void foo(Integer[] ints) {
|
||||
// could just use Arrays.asList(ints)
|
||||
List l = new ArrayList(10);
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(ints[i]);
|
||||
}
|
||||
for (int i=0; i< 100; i++) {
|
||||
l.add(a[i].toString()); // won't trigger the rule
|
||||
}
|
||||
}
|
||||
}
|
||||
]]></code>
|
||||
</test-code>
|
||||
</test-data>
|
||||
|
@ -187,7 +187,7 @@ public class Foo {
|
||||
]
|
||||
//StatementExpression[
|
||||
PrimaryExpression/PrimaryPrefix/Name[
|
||||
substring-before(@Image,'.add') = ancestor::MethodDeclaration//LocalVariableDeclaration[
|
||||
substring-before(@Image,'.add') = ancestor::MethodDeclaration//LocalVariableDeclaration[
|
||||
./Type//ClassOrInterfaceType[
|
||||
@Image = 'Collection' or
|
||||
@Image = 'List' or @Image='ArrayList'
|
||||
@ -202,8 +202,11 @@ public class Foo {
|
||||
]
|
||||
and
|
||||
PrimaryExpression/PrimarySuffix/Arguments/ArgumentList/Expression/PrimaryExpression/PrimaryPrefix/Name
|
||||
[@Image = ancestor::MethodDeclaration//LocalVariableDeclaration
|
||||
[@Array="true"]/VariableDeclarator/VariableDeclaratorId/@Image]
|
||||
[
|
||||
@Image = ancestor::MethodDeclaration//LocalVariableDeclaration[@Array="true"]/VariableDeclarator/VariableDeclaratorId/@Image
|
||||
or
|
||||
@Image = ancestor::MethodDeclaration//FormalParameter/VariableDeclaratorId/@Image
|
||||
]
|
||||
/../..[count(.//PrimarySuffix)
|
||||
=1]/PrimarySuffix/Expression/PrimaryExpression/PrimaryPrefix
|
||||
/Name
|
||||
|
@ -57,7 +57,7 @@
|
||||
</subsection>
|
||||
<subsection name="Contributors">
|
||||
<ul>
|
||||
<li>Andy Throgmorton - New XPath getCommentOn function, new rule DontCallThreadRun</li>
|
||||
<li>Andy Throgmorton - New XPath getCommentOn function, new rule DontCallThreadRun, fix for rule UseArraysAsList</li>
|
||||
<li>Nicolas Dordet - Fixed an issue on CloseResource</li>
|
||||
<li>Juan Jesús GarcÃa de Soria - Rework CPD algorithm</li>
|
||||
<li>Sergey Pariev - Fixed an ugly ArrayIndexOutOfBoundsException in CPD for Ruby</li>
|
||||
|
Loading…
x
Reference in New Issue
Block a user