Anna Kozlova
5d8e3f67a1
don't override first field by same named second (IDEA-174523)
2017-06-16 11:53:53 +03:00
Anna Kozlova
38f29c5389
restore class by index in target file for top level classes
...
EA-36372 - assert: CreateSubclassAction$.templateFinished
2017-06-15 18:14:17 +03:00
Anna Kozlova
f60676d110
default Optional.empty for Optional type (IDEA-174268)
2017-06-14 19:27:02 +03:00
Dmitry Batkovich
87b68598cb
add javadoc intention should be unavailable if javadoc already exists IDEA-174275
2017-06-14 17:11:07 +03:00
Dmitry Batkovich
b1d40b518b
relevant method chain completion: introduce new field if completion for field initializer is called (EA-103019)
2017-06-14 16:53:21 +03:00
Anna Kozlova
3dff91600a
redundant code block: compare same overload resolution (IDEA-174288)
...
instead of trying with cast afterwards, don't suggest to remove the block at the first place
2017-06-14 11:51:52 +03:00
Anna Kozlova
605dfb1c3c
redundant cast: ensure cast type compared with ground type (IDEA-174369)
...
remove attempts to emulate that and reuse getGroundTargetType api
2017-06-13 20:27:13 +03:00
Anna Kozlova
4b3e51a69d
testdata changes
2017-06-13 20:27:12 +03:00
Maxim.Mossienko
0573e1f109
update tests and testdata to reflect newer mock jdk 1.7
2017-06-13 15:30:25 +02:00
Anna Kozlova
fb928f72c6
lambda inference: conditional expressions in returns (IDEA-174301)
...
skip conditionals and parenthesis during find top expression
2017-06-13 16:12:45 +03:00
Anna Kozlova
634a945b0f
apply unifying substitutor to compare return types (IDEA-174292)
...
attempt to apply incompatible return types in method hierarchy due to method type parameters used in return types
2017-06-13 16:12:44 +03:00
Maxim.Mossienko
7387ee525b
update tests and testdata to reflect newer mock jdk 1.7
2017-06-13 15:09:42 +02:00
peter
2e6cfa9223
don't generate setters for constants during completion (IDEA-CR-21764)
2017-06-09 18:16:19 +02:00
Roman Shevchenko
0d61e56b64
[java] recognizes @index Javadoc tag (IDEA-160185)
2017-06-09 17:50:49 +03:00
peter
1a4a90e174
IDEA-173726 Generation completion suggests create setter for final field
2017-06-09 15:41:32 +02:00
Roman Shevchenko
e16815fb9f
[java] drops improperly added Javadoc tag
2017-06-08 19:14:48 +03:00
Anna Kozlova
e78186d6ae
support for arrays in template j.u.Objects.equals/hashCode (IDEA-162302)
2017-06-08 17:49:06 +03:00
Tagir Valeev
fb6965b6b9
ExtractSideEffectsFix -> DeleteSideEffectsAwareFix; i18n
...
Now intention availability logic is moved from HighlightUtil to DeleteSideEffectsAwareFix
Review: IDEA-CR-21623
2017-06-08 12:15:20 +07:00
Tagir Valeev
a5dcf8841f
ComparatorResultComparisonInspection: support >/>=/</<= checks
...
Additional fix for IDEA-173177. Now conditions like "a.compareTo(b) > 1" are warned as well.
2017-06-08 10:14:34 +07:00
peter
b8588d2006
prefer local variables over NULL_PSI_ELEMENT in smart completion
2017-06-07 13:35:28 +02:00
Tagir Valeev
535c113dba
IDEA-172877 Provide a quick-fix on 'Not a statement' error message
2017-06-07 15:27:49 +07:00
Anna Kozlova
02c718aae8
replace assignment with comparison in condition exps (IDEA-173860)
2017-06-06 19:07:58 +03:00
Roman Shevchenko
2c3c7ccbce
Merge remote-tracking branch 'origin/master'
2017-06-06 17:19:20 +03:00
Roman Shevchenko
71966404b9
[java] excludes multi-release classes from search (IDEA-164460)
2017-06-06 17:18:39 +03:00
Anna Kozlova
6487bb6913
disable assign parameter to final field (IDEA-173815)
...
for constructors with chaining calls, for non-constructors
2017-06-06 14:54:06 +03:00
Tagir Valeev
dbcddf5a4a
BoxForComparisonInspection enhanced -> UseCompareMethodInspection
...
Suggests to use Integer.compare(), etc. instead if ternary operator or if chain. Fixes IDEA-173766.
2017-06-06 17:20:08 +07:00
peter
03a663c63e
IDEA-165006 Support chained completion for method references in Java 8+
2017-06-05 19:20:02 +02:00
Anna Kozlova
c578a4ede7
disable assign param to field (IDEA-173747; IDEA-173689)
...
inapplicable types or already assigned
2017-06-05 20:14:45 +03:00
Anna Kozlova
a5501a81c0
incompatible return types in hierarchy fixed (IDEA-173809)
...
take parameter bounds into account
2017-06-05 20:14:44 +03:00
Dmitry Batkovich
fbd082f075
create switch intention: disable in for update IDEA-173690
2017-06-05 20:06:31 +03:00
Anna Kozlova
6423538939
surround with array fix: disable for non-denotable types (IDEA-173797)
2017-06-05 17:45:46 +03:00
Anna Kozlova
12c350758d
Interface.super method calls: ensure valid qualifier (IDEA-173888)
...
forbid calls to super methods which are overridden in direct superinterfaces
2017-06-05 14:34:18 +03:00
Anna Kozlova
377520ade5
intersection type validation fixed (IDEA-173900)
...
take type parameter bounds into account
2017-06-05 14:34:18 +03:00
peter
d82927a096
javadoc: show short annotation names in signatures and full names with explanations underneath (IDEA-167076, IDEA-166361)
2017-06-03 23:27:11 +02:00
Pavel Dolgov
6ebd6d9b4d
Java: Fixed conversion of constructor parameters for java.awt.Color (IDEA-172996)
2017-06-01 13:30:14 +03:00
Tagir Valeev
588d978362
OptionalIsPresentInspection: do not warn if map() part can be null
...
If we cannot determine the non-nullity of map expression, then info
level is used. Fixes IDEA-172609 "Replace Optional.isPresent() checks
with functional-style expressions" is broken.
2017-05-31 17:48:57 +07:00
peter
d9accfb4d4
IDEA-173473 Class type argument brackets are still inserted despite that being disabled
2017-05-30 20:10:36 +02:00
Anna Kozlova
3f76ffa2f8
provide quick fix to qualify super call to default interface method from class (IDEA-172325)
2017-05-30 15:00:42 +03:00
Dmitry Batkovich
1279ab20d8
method chain completion: make it works inside return statement
2017-05-29 19:16:06 +03:00
Tagir Valeev
b209ade15d
TrivialFunctionalExpressionUsageInspection: disable for multi-statement lambda in "for" init/update
2017-05-29 12:19:05 +07:00
peter
b15f49ac7a
IDEA-173298 Type inference doesn't properly find return type when it is more restricted in interface than abstract class
2017-05-26 14:42:42 +02:00
peter
d30a552fcb
IDEA-173437 Completion suggestion is bad for ObjectUtils.tryCast
2017-05-26 14:42:42 +02:00
Anna Kozlova
5e77c443de
simplification following IDEA-CR-21392
2017-05-26 13:36:45 +03:00
Anna Kozlova
51bcfcecf9
inference: don't traverse up through lambda bounds when parent inference was already started, in this case it's exception inference which should work without top level node (EA-83073 - assert: LambdaUtil.treeWalkUp; IDEA-173467)
2017-05-26 13:36:45 +03:00
Roman Shevchenko
6cb9cf0b6b
[java] recognizes claimed name in automatic modules (a test)
2017-05-25 20:19:12 +03:00
Anna Kozlova
770ebf45af
disable trivial functional expression for body with returns (IDEA-173436)
2017-05-25 16:06:05 +03:00
Anna Kozlova
fabc3a7ee8
fix testdata
2017-05-25 12:51:13 +03:00
Anna Kozlova
0aedb9b9ad
external annotations tests for rename/move
2017-05-25 12:51:13 +03:00
peter
4208f1d7b3
java completion: group fields together with local variables (IDEA-168743 , IDEA-172888)
2017-05-24 20:40:20 +02:00
Tagir Valeev
3fda127a48
ComparatorResultComparisonInspection: renamed to "Suspicious usage of compare method"
2017-05-24 18:14:30 +07:00