Sergey Ignatov
b7fc0ed2fc
fix SliceTreeTest.java
2015-10-28 14:40:05 +03:00
Dmitry Avdeev
aef02e4dfd
logging
2015-10-28 14:38:23 +03:00
Vladimir Krivosheev
718884c89c
IDEA-143094 Macros not working - they are in macros.xml but not shown in the menu
2015-10-28 12:36:20 +01:00
Vladimir Krivosheev
ed4aabcf2e
IDEA-143094 Macros not working - they are in macros.xml but not shown in the menu
2015-10-28 12:32:36 +01:00
Vassiliy.Kudryashov
e3940bac97
IDEA-143449 Editor leak on closing all projects
...
After-review ROLLBACK
2015-10-28 14:14:18 +03:00
Yann Cébron
cd00b57bee
Merge remote-tracking branch 'origin/master'
2015-10-28 12:10:28 +01:00
Yann Cébron
f6df710e8c
EP Pythonid.visitorFilter: specify "implementationClass"
2015-10-28 12:08:15 +01:00
Vladimir Krivosheev
afc3f90fbc
report state message, but not status text on failure (so, we get clear error message on vm connection failed)
2015-10-28 12:05:00 +01:00
Vladimir Krivosheev
fb59bcb2a7
netty-all-4.1.0.Beta7
2015-10-28 12:05:00 +01:00
Yann Cébron
30004c0676
EP project|applicationService, exportable: suppress "no <with> specified" inspection
2015-10-28 11:54:14 +01:00
Yann Cébron
3bea165133
EP moduleService: suppress "no <with> specified" inspection
2015-10-28 11:53:10 +01:00
Roman Shevchenko
ff14a38a6f
[platform] symlinks in watch roots, test updated for OS X
2015-10-28 11:47:39 +01:00
peter
fe1786aefa
report each "PSI invalidated outside transaction" trace only once
2015-10-28 11:19:13 +01:00
Daniil Ovchinnikov
f6de9fc6c8
[groovy] map access improvements
...
- Remove qname comparing to null (improve readability)
- Add test for null qname
2015-10-28 13:17:05 +03:00
Dmitry Trofimov
bae252f453
simplify EventMap
2015-10-28 11:13:49 +01:00
Yaroslav Lepenkin
de85aff25d
Provided way to align subsequent simple methods
2015-10-28 12:31:12 +03:00
Yaroslav Lepenkin
c30e7b54e0
Implemented simple check for alignment infinite recusrsion - we limit amount of backward block rollbacks (when we switch myCurrentBlock to some previously located block) to the number of total blocks with alignments.
2015-10-28 12:31:10 +03:00
Yann Cébron
b5c2a67327
IDEA-146962 Use word-wrap for Description text in the Registry
2015-10-28 10:27:04 +01:00
Sergey Ignatov
dd31b70fac
get rid of JBTableWithHintProvider.java
2015-10-28 12:02:42 +03:00
Sergey Ignatov
840d946bb4
show usages action: don't use deprecated API
2015-10-28 12:02:41 +03:00
Sergey Ignatov
e0f21709ee
find usage popup and tree view:
...
– don't show column numbers
– get rid of parentheses
– adjust offsets
– get rid of magic numbers
2015-10-28 12:02:40 +03:00
Sergey Ignatov
d36cfaf5c5
project view: show path and source/test root annotations without parentheses
2015-10-28 12:02:39 +03:00
Sergey Ignatov
86ec94b515
move spaceAndThinSpace to FontUtil
2015-10-28 12:02:39 +03:00
Sergey Ignatov
f4d3aa01c7
remove unused code
2015-10-28 12:02:38 +03:00
nik
4ed43749a4
cross-platform zip: detect executable name instead of using hard-coded 'idea'
2015-10-28 12:01:18 +03:00
Dmitry Trofimov
24d85cc37a
JUnit process handler doesn't support blocking mode
2015-10-28 02:43:47 +01:00
Vyacheslav Karpukhin
cbf200598a
Revert "CPP-4851 Run Configuration looses "Before launch: run another configuration" settings - Cannot run the configuration anymore."
...
This reverts commit 84ff34601f .
2015-10-27 23:38:35 +01:00
Konstantin Bulenkov
568f8c0702
IDEA-146932 Help button location contradict guidelines in case of checkbox aligned with control buttons
2015-10-27 15:03:08 -07:00
Sal Guarnieri
cabc1cac86
[platform] symlinks in watch roots, optimization
...
Use a map to look up path mapping information. This makes the lookup on the order of the length of the path (in components) rather than on the order of number of paths that need mapping.
#309 (https://github.com/JetBrains/intellij-community/pull/309 )
2015-10-27 20:45:30 +01:00
Anna Kozlova
ca76f15df5
junit: don't send one-node tree to avoid confusions ala @Unroll (IDEA-146619)
2015-10-27 19:35:24 +01:00
Anna Kozlova
772c519a1e
recreate junit engine on repeating tests (IDEA-146799)
2015-10-27 19:35:22 +01:00
Anna Kozlova
5c8c069685
make static: ensure @Override is cleared from static method (IDEA-146872)
2015-10-27 19:35:21 +01:00
Anna Kozlova
e27c654b20
silly assignment: ignore non-trivial casts involving primitives (IDEA-146830)
2015-10-27 19:35:20 +01:00
Anna Kozlova
40db0beb8d
make method static: fix delegate parameter place (IDEA-146900)
2015-10-27 19:35:18 +01:00
Anna Kozlova
583b5af087
introduce variable: remove reference to created variable if declaration was inserted inside loop body (IDEA-146842)
2015-10-27 19:35:17 +01:00
Anna Kozlova
08dfab6ea6
extract method dialog: shrink return type combo to the visible type (IDEA-146826)
2015-10-27 19:35:16 +01:00
Roman Shevchenko
44b8257cfd
Cleanup (formatting; code reuse)
2015-10-27 19:19:11 +01:00
Daniil Ovchinnikov
2656dddf65
[groovy] map access improvements
...
- Do not resolve reference if qualifier is inheritor of `java.util.Map`.
- Get inferred type from map access only when qualifier is not resolved to a class.
- Use qualifier's full type instead of nominal type when getting map values type.
2015-10-27 21:15:34 +03:00
Gregory.Shrago
472fff60b8
TextMate: add support for language injection (IntelliLang inspection)
2015-10-27 20:35:34 +03:00
Vladimir Krivosheev
7e682ec832
IDEA-141563 GWT: breakpoints stop working after recompile
2015-10-27 18:09:20 +01:00
Sergey Malenkov
228b55009c
Test fixed: ConfigurablesModifiedTest.testModified
...
methods reset() and isModified() must be consistent
2015-10-27 20:06:43 +03:00
Yann Cébron
daed2963fe
Merge remote-tracking branch 'origin/master'
2015-10-27 17:41:42 +01:00
Gregory.Shrago
518965bd0d
unify toUpperCase() and toLowerCase() nullability
2015-10-27 19:34:35 +03:00
Gregory.Shrago
fdfcca2c84
TextMate: add support for language injection (IntelliLang)
2015-10-27 19:30:28 +03:00
Gregory.Shrago
6fe3fe80d4
TextMate: add support for language injection
2015-10-27 19:30:27 +03:00
Maxim.Mossienko
6ad7a37754
same incompatible plugin versions as in 143
2015-10-27 17:20:26 +01:00
Yann Cébron
1234c0b0d8
DomFileDescriptionTest.tearDown: safer
2015-10-27 17:12:38 +01:00
Egor.Ushakov
8f326caf41
EA-65128 - AIOOBE: DefaultMutableTreeNode.getChildAt
2015-10-27 19:07:18 +03:00
Yann Cébron
74b38d515b
AntCompletionTest.tearDown: safer
2015-10-27 17:03:34 +01:00
Yann Cébron
ae172a2968
TaskVcsTest.tearDown: invoke super.tearDown() in finally-block
2015-10-27 16:47:29 +01:00