From c966f7f16ddf6ad552f96fa9dd7ec1a3033c7eb1 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 13 Feb 2020 12:51:58 +0100 Subject: [PATCH] IJSDK-788 Cleanup code sample "tree_structure_provider" --- tutorials/tree_structure_view.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/tree_structure_view.md b/tutorials/tree_structure_view.md index 4f7226335..7684f3459 100644 --- a/tutorials/tree_structure_view.md +++ b/tutorials/tree_structure_view.md @@ -23,7 +23,7 @@ Add new *treeStructureProvider* extension to the ```java - + ``` @@ -53,7 +53,7 @@ To implement Tree Structure nodes filtering logic, override `modify()` method. The example below shows how to filter out all the Project View nodes except those which correspond to text files and directories. ```java -{% include /code_samples/tree_structure_provider/src/main/java/org/jetbrains/tutorials/tree/structure/TextOnlyTreeStructureProvider.java %} +{% include /code_samples/tree_structure_provider/src/main/java/org/intellij/sdk/tree_structure_provider/TextOnlyTreeStructureProvider.java %} ``` ## 4. Compile and Run the Plugin