Tagir Valeev
9246190c9c
StreamApiMigrationInspection: suggest to use takeWhile() in Java-9
2017-02-01 19:46:04 +03:00
Anna.Kozlova
e3352b820f
method signature: don't substitute twice during erasure (IDEA-167386)
2017-02-01 15:47:45 +01:00
Tagir Valeev
80256c9bfb
StreamToLoopInspection: support some simple StreamEx scenarios; support Java 9 takeWhile/dropWhile
2017-02-01 13:45:40 +03:00
Tagir Valeev
d8836c315d
StreamToLoopInspection: support block void lambdas (and returns in forEach not inside nested loop)
2017-01-31 16:29:03 +03:00
Tagir Valeev
c15f721206
StreamToLoopInspection: support Iterable.forEach()
2017-01-31 16:29:03 +03:00
Tagir Valeev
a47088fa4f
StringConcatenationInLoopsInspection: automatically create append chains
2017-01-31 16:29:02 +03:00
Tagir Valeev
e8c6ba183b
IDEA-167263 Stream API migration does not work when replacing simple loop on array of primitive types (int, long, double)
2017-01-30 14:00:52 +03:00
Pavel Dolgov
14b3a1b38f
Java: When generating return statement where the returned type is an array use raw type in array creation (IDEA-163341)
2017-01-30 13:37:29 +03:00
Tagir Valeev
fb6ba726e5
StreamToLoop tests grouped
2017-01-27 17:41:53 +07:00
Anna Kozlova
3096de1332
forbid private classes in java 9 interfaces (IDEA-167121)
2017-01-26 19:02:35 +03:00
Tagir Valeev
533f500368
IDEA-167088 Stream API migration: support joining with delimiter
2017-01-26 09:42:45 +01:00
Anna Kozlova
32b5f1d747
ensure local classes are not suggested to be made static (IDEA-167085)
2017-01-25 13:42:32 +03:00
Tagir Valeev
5f29e676e6
IDEA-167088 Stream API migration: allow resulting StringBuilder usages in concatenation
2017-01-25 14:36:47 +07:00
Tagir Valeev
4e6237cc7f
IDEA-167088 Stream API migration: intermediate mapping added
2017-01-25 13:36:56 +07:00
Tagir Valeev
bfa2fb9348
IDEA-167088 Stream API migration: support simple joining cases: fixed AT_WANTED_PLACE case
2017-01-25 13:05:08 +07:00
Tagir Valeev
16ddd276ed
IDEA-167088 Stream API migration: support simple joining cases
2017-01-25 12:46:01 +07:00
Bas Leijdekkers
acc75fbbff
make class abstract too on making method abstract (IDEA-23358)
2017-01-24 14:41:56 +01:00
Tagir Valeev
2d57e55143
StreamToLoopInspection: support groupingBy(..., counting()/summingInt()/summingLong()/summingDouble()/mapping(summing...))
2017-01-24 17:56:19 +07:00
Tagir Valeev
1820f2db99
StreamToLoopInspection: allow custom sources when option is set
2017-01-24 15:34:50 +07:00
Tagir Valeev
ed51fbe99b
LambdaRefactoringUtil#convertToLambda: check context when deciding whether to add qualifier
2017-01-24 13:56:26 +07:00
Tagir Valeev
8f904a0d06
IDEA-166827 Quick-fix to insert SAM-method call
2017-01-23 12:55:51 +07:00
Anna Kozlova
0fe652059e
reifiable types: skip anonymous types through the tree hierarchy as they can't be generic (IDEA-166840)
2017-01-20 15:51:24 +03:00
Tagir Valeev
305c101ca6
StreamToLoop: fixed method references unwrap when functional interface type parameter is captured wildcard with upper bound
2017-01-20 17:52:44 +07:00
Anna Kozlova
62d2417879
don't qualify with this in static context (IDEA-166793)
2017-01-20 12:58:34 +03:00
Anna Kozlova
93fa3ed8c8
expected type by prefix expression should be calculated by parent (IDEA-166819)
2017-01-20 12:58:32 +03:00
Anna Kozlova
f28bfb5bcb
redundant type arguments: check all methods applicability till top level (IDEA-166696)
2017-01-20 12:58:32 +03:00
Tagir Valeev
327e51962b
IDEA-166814 Stream API migration: support more post-loop steps
2017-01-19 14:14:20 +07:00
Anna Kozlova
e323aa8b9c
lambda -> method ref: don't transform by default array access qualifiers (IDEA-166740)
2017-01-18 19:11:49 +03:00
Anna Kozlova
560b5b0265
provide accessibility and static modifier fixes for method references (IDEA-166707)
2017-01-18 16:55:38 +03:00
Anna Kozlova
8913e40ed1
ground type for explicitly typed lambda: add sam to target class substitution (IDEA-166662)
2017-01-18 12:11:17 +03:00
Anna Kozlova
0339448167
diamonds with anonymous: ensure base type calculated over tree cause too much context should be created otherwise (IDEA-166600)
2017-01-18 11:21:35 +03:00
Tagir Valeev
cbd273dda8
StreamApiMigration: minor fixes in FindFirst scenarios
2017-01-18 13:52:12 +07:00
Tagir Valeev
4c07a74eb5
CommentTracker: better whitespace handling
2017-01-18 13:52:11 +07:00
Tagir Valeev
a363362459
StreamApiMigration: automatically simplify IntStream.range().mapXyz chains; IndexedContainer#getElementType: do not erase
2017-01-16 17:43:50 +07:00
Tagir Valeev
8924fda614
StreamToLoopInspection: fixed unqualified reference to stream() method handling
2017-01-16 14:44:34 +07:00
Tagir Valeev
4aaa6a4cc2
IDEA-166636 A bunch of bugs in TrivialFunctionalExpressionUsageInspection (Method call can be simplified)
2017-01-16 12:52:08 +07:00
Anna Kozlova
1700f14d67
create class from new: put caret on name (IDEA-166356)
2017-01-13 16:24:36 +01:00
Pavel Dolgov
93e109126a
Java: Simplified handling the parentheses in the quick-fix Collection.toArray() (IDEA-163341)
2017-01-13 12:43:30 +03:00
Pavel Dolgov
85e93b585f
Java: When generating return statement where the returned type is a type parameter array (like T[]) don't suggest Collection.toArray() (IDEA-163341)
2017-01-13 12:22:32 +03:00
Pavel Dolgov
83b5637a43
Java: Don't offer the quick-fix Collection.toArray() for type parameter arrays (like T[]) (IDEA-163341)
2017-01-13 12:22:32 +03:00
Tagir Valeev
67964b82d4
ForCanBeForeachInspection: fixed incorrect merge conflict resolution; ForCanBeForeachInspectionFixTest merged with ForCanBeForeachFixTest
2017-01-13 14:19:41 +07:00
Tagir Valeev
1638590aad
ExpressionUtils#getQualifierOrThis; ForCanBeForeachInspection & WhileCanBeForeachInspection fixed to handle unqualified calls in nested classes; cosmetics; tests for ForCanBeForeachInspection quick fix
2017-01-13 13:28:31 +07:00
Anna Kozlova
7d8df26aed
surround with array fix: ensure result is free from generics array creation error (IDEA-166489; IDEA-166490)
2017-01-12 16:57:35 +01:00
Anna Kozlova
65ac360725
javac 1.7 bug workaround: give error for language level 1.7 despite of java 1.8 would compile the code (IDEA-166358)
2017-01-12 12:02:35 +01:00
Tagir Valeev
5b04785164
IDEA-166499 Stream API migration: support array filling in a loop
2017-01-12 17:37:10 +07:00
Tagir Valeev
5a599cdffd
IDEA-166424 Guava create collections , nonsupport replace with stream API
2017-01-12 11:55:44 +07:00
Tagir Valeev
347bd66e81
StreamApiMigrationInspection: enable flatMap with primitive type change
2017-01-12 11:18:29 +07:00
Tagir Valeev
0957d52585
Convert for-loop with Collections.addAll: support primitive types; switch off when count expression is used; wrong contracts removed
2017-01-12 11:04:58 +07:00
Pavel Dolgov
26a7739891
Java: Implemented the quick-fix Collection.toArray() that is offered in the context where an array is required but a collection is provided (IDEA-163341)
2017-01-11 16:43:18 +03:00
Anna.Kozlova
23c0f28705
change signature: don't ask about covariant overrides when types are equal, e.g. when super type is changed based on override method return type
...
type annotations: ensure annotations are cloned so invalidating initial type doesn't break the consequence refactoring
EA-93296 - PIEAE: PsiUtilCore.ensureValid
2017-01-11 12:58:26 +01:00