Branch: refs/heads/master
Home: https://github.com/pmd/pmd
Commit: 68ab7048cb02816aa30dac0ef03318c59ca63fa0
https://github.com/pmd/pmd/commit/68ab7048cb02816aa30dac0ef03318c59ca63fa0
Author: Git Guru <git.g...@develop-group.de>
Date: 2017-05-29 (Mon, 29 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
*[java]* Java 8 parsing problem with annotations for wildcards #414
Commit: 7a4766e8a604688c46bda1bd1114a9c3c2aa9b9c
https://github.com/pmd/pmd/commit/7a4766e8a604688c46bda1bd1114a9c3c2aa9b9c
Author: Git Guru <git.g...@develop-group.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
[java] Parsing Problem with Annotation for Array Member Types #417
Commit: d314a2c3014595d9effb1efe1c381c8649937154
https://github.com/pmd/pmd/commit/d314a2c3014595d9effb1efe1c381c8649937154
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
test case for
private byte @Nullable [] getBytes(){
return null;
}
Commit: 0660c7298a683aaf050a66bb92ff6a72e975df13
https://github.com/pmd/pmd/commit/0660c7298a683aaf050a66bb92ff6a72e975df13
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
Log Message:
-----------
+ simplified
Commit: b5474cdcf84f090c8dccc8ddeb45d4d62cc4d966
https://github.com/pmd/pmd/commit/b5474cdcf84f090c8dccc8ddeb45d4d62cc4d966
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
test case and fix for
public static <T extends @NonNull Enum<T>> getEnum() {
return null;
}
Commit: 7997297e0bebe66692b60a3bf5cb2ca1cfde8022
https://github.com/pmd/pmd/commit/7997297e0bebe66692b60a3bf5cb2ca1cfde8022
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
test case for
public void createNonNullArray() {
return new MetaColumn @NonNull [value];
}
Commit: 5120b0985c6e96fc42dd149b877d24946a5bb368
https://github.com/pmd/pmd/commit/5120b0985c6e96fc42dd149b877d24946a5bb368
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
fixed bad void return
Commit: 3e75ddc188fe8a9a0d45a83918201210e6eb8a46
https://github.com/pmd/pmd/commit/3e75ddc188fe8a9a0d45a83918201210e6eb8a46
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
+ should have tried first :(
Commit: a4754e9fc97863850485df5999951eba6604e974
https://github.com/pmd/pmd/commit/a4754e9fc97863850485df5999951eba6604e974
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
I hear voices ... and they tell me to like multi dimensional arrays
private static void testMultiDimArrayWithAnnotations() {
// ever used a 2D-Array in java??
Object x = new Object @NonNull[2] @Nullable[1] @NonNull[3];
}
Commit: 1a6be9190b13e98efce240b37b137e7fecdb1a9b
https://github.com/pmd/pmd/commit/1a6be9190b13e98efce240b37b137e7fecdb1a9b
Author: snap252 <spam...@gmx.de>
Date: 2017-05-30 (Tue, 30 May 2017)
Changed paths:
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
+ beautified method signature
Commit: b8d435235f77db458605da36db69fe1532311966
https://github.com/pmd/pmd/commit/b8d435235f77db458605da36db69fe1532311966
Author: Git Guru <git.g...@develop-group.de>
Date: 2017-06-01 (Thu, 01 Jun 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
Log Message:
-----------
fixed/removed unneeded change
@@ -1488,7 +1488,7 @@ void MethodDeclaration(int modifiers) :
{jjtThis.setModifiers(modifiers);}
{
[ TypeParameters() ]
- ResultType() MethodDeclarator() [ "throws" NameList() ]
+ [(Annotation() {checkForBadTypeAnnotations();})+] ResultType()
MethodDeclarator() [ "throws" NameList() ]
Commit: 2460402ea83be78094e8889bd4517f8e474f1017
https://github.com/pmd/pmd/commit/2460402ea83be78094e8889bd4517f8e474f1017
Author: snap252 <spam...@gmx.de>
Date: 2017-06-01 (Thu, 01 Jun 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
test case & adapted grammar for annotated generic return type
public static <T> @Nullable T getNullableEnum() {
return null;
}
Commit: 0822218574e735c01d5ed96dc1996f5cc4f605b3
https://github.com/pmd/pmd/commit/0822218574e735c01d5ed96dc1996f5cc4f605b3
Author: Juan Martín Sotuyo Dodero <juansot...@gmail.com>
Date: 2017-06-01 (Thu, 01 Jun 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
Log Message:
-----------
Simplify expressions
Commit: 2e869d4c6e755484b22004beea949a7c5e4b6717
https://github.com/pmd/pmd/commit/2e869d4c6e755484b22004beea949a7c5e4b6717
Author: Juan Martín Sotuyo Dodero <juansot...@gmail.com>
Date: 2017-06-01 (Thu, 01 Jun 2017)
Changed paths:
M src/site/markdown/overview/changelog.md
Log Message:
-----------
Update changelog, refs #416
Commit: a239b6c78a92f0cac9e768e53514fcad6d34a1e4
https://github.com/pmd/pmd/commit/a239b6c78a92f0cac9e768e53514fcad6d34a1e4
Author: Juan Martín Sotuyo Dodero <juansot...@gmail.com>
Date: 2017-06-01 (Thu, 01 Jun 2017)
Changed paths:
M pmd-java/etc/grammar/Java.jjt
M
pmd-java/src/test/resources/net/sourceforge/pmd/ast/ParserCornerCases18.java
M src/site/markdown/overview/changelog.md
Log Message:
-----------
Merge branch 'pr-416'
Compare: https://github.com/pmd/pmd/compare/872718a0dd6b...a239b6c78a92
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Pmd-commits mailing list
Pmd-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmd-commits