This project is mirrored from https://gitee.com/mirrors/intellij-community.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 13 Feb, 2023 40 commits
-
-
Nikolay Chashnikov authored
[platform] API: change access modifier for DynamicBundle(String) constructor from public to protected This constructor can be used only from the subclasses, otherwise the classloader will be taken from DynamicBundle class itself, and it won't load the message bundle from a plugin. GitOrigin-RevId: f94c5dfb62f57df30479719a6587293e63154bb8
-
Nikolay Chashnikov authored
GitOrigin-RevId: 3345e82a1386dd700d614076605b9f17abbc2523
-
Nikolay Chashnikov authored
GitOrigin-RevId: e8f0c5903650a84a09ff1ae1cf9bfe66306b6707
-
Nikolay Chashnikov authored
GitOrigin-RevId: 0f23f2cdcdb76f8e2ff953772f8735ace0e2bd9b
-
Nikolay Chashnikov authored
Get rid of unnecessary methods, use String instead of Object. GitOrigin-RevId: 0e706fcd5db2db2d6f0a2b22e1d872be70c0dc33
-
Nikolay Chashnikov authored
GitOrigin-RevId: 0e300243289b9c0e854458243d175d42ee224c67
-
Nikolay Chashnikov authored
GitOrigin-RevId: 1f1adce969848428056f709487861d238ade9e0f
-
Nikolay Chashnikov authored
The method from JDK is used instead. GitOrigin-RevId: 4276d57c52e1a1b7685bb55f29f772a5f13a4f57
-
Nikolay Chashnikov authored
[platform util] API: deprecate Comparing::compare(boolean, boolean) method which is identical to JDK's method GitOrigin-RevId: 745213cee9f90bbf4928360875578d0825ec1bb6
-
Nikolay Chashnikov authored
Methods from JDK are used instead. GitOrigin-RevId: bc8421f1154fab3a6cc474e59cdc2b7131b1f58f
-
Nikolay Chashnikov authored
GitOrigin-RevId: 05a4c24bd103483b68ee66ac54af9cf01c14738a
-
Aydar Mukhametzyanov authored
GitOrigin-RevId: 2019bce10b3c5cf3708ef057a798aa5085bdec0b
-
Egor Ushakov authored
GitOrigin-RevId: 769ea1a1552c7d259e54b5285ec4a3af9fae989a
-
Mikhail Pyltsin authored
GitOrigin-RevId: 3cdf0356b5feac318c1b336e184e497b206d521b
-
Mikhail Pyltsin authored
GitOrigin-RevId: c175e09a1638ca5aa6ced18bbdc02ad7bf6308ad
-
Sergei Tachenov authored
GitOrigin-RevId: fafcd24ce8bb6ae47690f3381ac6e8f5f40aedfa
-
Aleksandr Krasilnikov authored
IDEA-308026 GitOrigin-RevId: 054853a70784ae2ae0aef41a32f0f83bfffd7d73
-
Aleksandr Krasilnikov authored
GitOrigin-RevId: 99a8c65f99994b6a727f6ce1c16c4c12ae9d103e
-
Dima Golovinov authored
GitOrigin-RevId: 3da4f72909c5228ee5c1c20dd6c2697fddfd181e
-
Vadim Salavatov authored
IJPL-52 RecordsLogInterceptor: fix wrong result class in onSetNameId, throw exception on contract violation GitOrigin-RevId: b252d7c7010bae7984f723ec4405125bf935970c
-
Vadim Salavatov authored
GitOrigin-RevId: c7b303555f0a80c95f953fcfd8b48b5c8729f055
-
Andrey Cherkasov authored
Revert "[java-inspections] TextBlockMigration: Suggest converting part of a string concatenation to the text block" This reverts commit 8cbb8bcd7b0492e5657cfe69613cb27ff6e49414. GitOrigin-RevId: 661bf51388bfc0c07b7f01dd182c76a82f70ae9b
-
Andrey Cherkasov authored
Revert "[java-inspections] TextBlockMigration: Suggest the quick-fix not only when the cursor is on a line break" This reverts commit c22c5b0019577717d11264bc22d6b19b98d0749a. GitOrigin-RevId: 09e3e3b93698ec6e3489fe3c42827df78d66c22f
-
Andrey Cherkasov authored
IDEA-309065 GitOrigin-RevId: 6e558abd4b09893351d37bc17d55dde3424346f9
-
Daniil Ovchinnikov authored
Click in the child popup only fires `MOUSE_PRESSED`, which is filtered out, or `MOUSE_PRESSED` (filtered out), `MOUSE_RELEASED` (also filtered out), and finally `MOUSE_CLICKED`, but at the moment of `MOUSE_CLICKED`, the popup window has focus => nav bar skips its update. Normally, navigation triggers another `FileEditorManagerListener .fileOpened` event, but no file is opened on navigation between members inside the current file. After this change, an update is requested after the navigation completes. GitOrigin-RevId: d2195b2475faaecd7a1214f4cf5d243097ee7426
-
Daniil Ovchinnikov authored
GitOrigin-RevId: 1c545d485cf10b5e828c9c6523c185ac528ae8cb
-
Daniil Ovchinnikov authored
- inline `childrenSelector`; - extract `NavBarVmImplKt.childItems`; - extract `NavBarVmImplKt.childItemsAndNavigation`; - move `NavBarVmItem` stuff to corresponding file. GitOrigin-RevId: 1e0bda086301eef9b89c243adfe47849d30e3d26
-
Nikolay Rykunov authored
GitOrigin-RevId: b9df662b87178f09652508125ed39391f420c0a0
-
Dmitry Kichinsky authored
GitOrigin-RevId: 30c01fe69c20bec78a8d8d66e97dac88444fe21b
-
Dmitriy.Panov authored
IDEA-309683 compilation dependencies resolved for build process on IDE side not to pass Space token (required for private packages) between processes for security reasons GitOrigin-RevId: 88277f471cf262b86d57a816a0d03f37f81002a8
-
Dmitriy.Panov authored
GitOrigin-RevId: d2670012245fb878ea298e2459df78da5db5104a
-
Sergei Tachenov authored
Wrap Select In targets in actions or action groups depending on whether they're composite. Update in background to avoid performing slow ops on the EDT. Create the ide.selectIn.experimental.popup registry key, false for now. By default the old popup is used, nothing is changed. GitOrigin-RevId: 8b0f74d33973264fd9617635b256c031d961c911
-
Alex Plate authored
GitOrigin-RevId: af53a8e168d4f291e0d3eab375a5a1283336a444
-
Alex Plate authored
GitOrigin-RevId: d32cb7571510be16602c3ac81b3e9b693ba4a1cc
-
Alex Plate authored
GitOrigin-RevId: 5df7cee2a1592e6420828a04453a12547458d09d
-
Konstantin Aleev authored
- run Spring Boot feature usage collector in smart mode GitOrigin-RevId: f32798208519c3e83ccfc312cf3a051fd24b25cd
-
Dmitry Zhuravlev authored
Recent root is used to get "guessed" root if data context doesn't contain the last active editor, so it should be up-to date. GitOrigin-RevId: ffb53adc2a84bf84f6dd6849a349d780475f3265
-
Yuriy Artamonov authored
GitOrigin-RevId: a5bcf95f0501c973acc012be9deeb85d7a884196
-
Aleksei Pomelov authored
GitOrigin-RevId: e12aed3ccaa59998b26508a01defa2cc5d904715
-
Egor Ushakov authored
GitOrigin-RevId: 37a5036090ca579e84588145438acfd12cdd6ad1
-