Skip to content

Commit c3ba69c

Browse files
authored
Merge pull request #1805 from Haehnchen/feature/completion-goto
deprecated "GotoCompletionRegistrar" extension in favor of core features
2 parents 6fc58c3 + b20c785 commit c3ba69c

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/main/java/fr/adrienbrault/idea/symfony2plugin/codeInsight/GotoCompletionContributor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
/**
88
* @author Daniel Espendiller <[email protected]>
9+
*
10+
* @deprecated Use core features
911
*/
1012
public interface GotoCompletionContributor {
1113
@Nullable

src/main/java/fr/adrienbrault/idea/symfony2plugin/codeInsight/GotoCompletionProvider.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* @author Daniel Espendiller <[email protected]>
13+
*
14+
* @deprecated Use core features
1315
*/
1416
public abstract class GotoCompletionProvider implements GotoCompletionProviderInterfaceEx {
1517
@NotNull

src/main/java/fr/adrienbrault/idea/symfony2plugin/codeInsight/GotoCompletionRegistrar.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
/**
66
* @author Daniel Espendiller <[email protected]>
7+
*
8+
* @deprecated Use core features
79
*/
810
public interface GotoCompletionRegistrar {
911
void register(@NotNull GotoCompletionRegistrarParameter registrar);

src/main/java/fr/adrienbrault/idea/symfony2plugin/codeInsight/GotoCompletionRegistrarParameter.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
/**
88
* @author Daniel Espendiller <[email protected]>
9+
*
10+
* @deprecated Use core features
911
*/
1012
public interface GotoCompletionRegistrarParameter {
1113
void register(@NotNull ElementPattern<? extends PsiElement> pattern, GotoCompletionContributor contributor);

0 commit comments

Comments
 (0)