Remove next/previous links

This commit is contained in:
Matt Ellis 2017-10-09 10:40:39 +01:00
parent ee0d796fcc
commit bec8761c55
12 changed files with 0 additions and 73 deletions

View File

@ -89,5 +89,3 @@ You may also deploy plugins to a release channel of your choosing, by configurin
* `eap`: https://plugins.jetbrains.com/plugins/eap/list
It is also possible to host an [Enterprise Plugin Repository](https://www.jetbrains.com/idea/help/adding-plugins-to-enterprise-repositories.html), in which case the URL structure will depend on your hosting address. For more information, please refer to the [IntelliJ IDEA documentation](https://www.jetbrains.com/idea/help/managing-plugins.html).
[Top](/tutorials/build_system.md)

View File

@ -103,5 +103,3 @@ Launch the new Gradle Run Configuration. From the Run Window, the following outp
<img src="img/launched.png" alt="Gradle task output" width="800px"/>
Finally, when the IDE launches, there should be a new menu to the right of the **Help** menu. Your plugin is now configured on Gradle.
[Top](/tutorials/build_system.md)

View File

@ -33,10 +33,3 @@ public void testAnnotator() {
### 4.3. Run the test
Run the test and make sure it's green.
-----
[Previous](completion_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](formatter_test.md)

View File

@ -20,11 +20,3 @@ public void testCommenter() {
### 9.2. Run the test
Run the test and make sure it's green.
-----
[Previous](find_usages_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](reference_test.md)

View File

@ -40,10 +40,3 @@ Create one more file *CompleteTestData.java*.
### 3.3. Run the test
Run the test and make sure it's green.
-----
[Previous](parsing_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](annotator_test.md)

View File

@ -50,9 +50,3 @@ public void testFindUsages() {
### 8.3. Run the test
Run the test and make sure it's green.
-----
[Previous](folding_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](commenter_test.md)

View File

@ -32,9 +32,3 @@ public void testFolding() {
### 7.3. Run the test
Run the test and make sure it's green.
-----
[Previous](rename_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](find_usages_test.md)

View File

@ -48,9 +48,3 @@ public void testFormatter() {
### 5.3. Run the test
Run the test and make sure it's green.
-----
[Previous](annotator_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](rename_test.md)

View File

@ -102,10 +102,3 @@ Simple File(0,433)
### 2.5. Run the test
Run the test and make sure it's green.
-----
[Previous](tests_prerequisites.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](completion_test.md)

View File

@ -34,13 +34,3 @@ public void testReference() {
### 10.3. Run the test
Run the test and make sure it's green.
-----
[Previous](commenter_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)

View File

@ -71,9 +71,3 @@ public void testRename() {
### 6.4. Run the test
Run the test and make sure it's green.
[Previous](formatter_test.md)
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](folding_test.md)

View File

@ -29,9 +29,3 @@ All we need to do is point the the run configuration's working directory to the
> Keep in mind that we have changed the _working directory_, so all the paths in tests extended from
> [LightCodeInsightFixtureTestCase](upsource:///java/testFramework/src/com/intellij/testFramework/fixtures/LightCodeInsightFixtureTestCase.java)
> will use relative path to the _source root_ of IntelliJ IDEA Community Edition.
-----
[Top](/tutorials/writing_tests_for_plugins.md)
[Next](parsing_test.md)