Skip to content

Commit e3c5102

Browse files
authored
Merge pull request #1818 from Haehnchen/feature/deprecated-annoation
add deprecated annotation for tooling
2 parents 2b28f49 + 472b233 commit e3c5102

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*
1010
* @deprecated Use core features
1111
*/
12+
@Deprecated
1213
public interface GotoCompletionContributor {
1314
@Nullable
1415
GotoCompletionProvider getProvider(@NotNull PsiElement psiElement);

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* @deprecated Use core features
1515
*/
16+
@Deprecated
1617
public abstract class GotoCompletionProvider implements GotoCompletionProviderInterfaceEx {
1718
@NotNull
1819
private final PsiElement element;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*
88
* @deprecated Use core features
99
*/
10+
@Deprecated
1011
public interface GotoCompletionRegistrar {
1112
void register(@NotNull GotoCompletionRegistrarParameter registrar);
1213
}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*
1010
* @deprecated Use core features
1111
*/
12+
@Deprecated
1213
public interface GotoCompletionRegistrarParameter {
1314
void register(@NotNull ElementPattern<? extends PsiElement> pattern, GotoCompletionContributor contributor);
1415
}

0 commit comments

Comments
 (0)