fix broken links (IJSDK-70, IJSDK-74)

This commit is contained in:
Dmitry Jemerov 2015-08-06 19:58:57 +02:00
parent 7bc478ecb9
commit a3018e881f
2 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ For Java projects, SDK is referred to as JDK (Java Development Kit).
SDK determines which API library is used to build the project. If your project is multi-module, the project SDK by default is common for all modules within the project.
Optionally, you can configure individual SDK for each module.
For more information about SDKs, see
[JDKs](http://www.jetbrains.com/idea/webhelp/jdks.html)
[SDK](https://www.jetbrains.com/idea/help/sdk.html)
and
[Configuring Project JDK](http://www.jetbrains.com/idea/webhelp/configuring-project-jdk.html)
[Configuring Global, Project and Module SDKs](https://www.jetbrains.com/idea/help/configuring-global-project-and-module-sdks.html)
in IntelliJ IDEA Web Help.
### Getting Project Sdk Information

View File

@ -174,7 +174,7 @@ public void actionPerformed(final AnActionEvent anActionEvent) {
Generally replacement can be done by calling
```void replaceString(int startOffset, int endOffset, @NotNull CharSequence s);``` of the Document, however,
the operation of replacement must be executed safely, this mean the Document must be locked and any changes should be performed under the
[write action](https://confluence.jetbrains.com/display/IDEA/Write+action+in+separate+thread).
[write action](../../basics/architectural_overview/general_threading_rules.html).
See
[Threading Issues](https://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Architectural+Overview#IntelliJIDEAArchitecturalOverview-Threading)
section to know more about synchronization issues and changes safety in IntelliJ.