Skip to content

Commit 091af00

Browse files
committed
Fix qf
1 parent 29c7bfc commit 091af00

File tree

1 file changed

+11
-0
lines changed
  • src/main/java/com/github/_1c_syntax/bsl/languageserver/aop

1 file changed

+11
-0
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/aop/Pointcuts.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,75 +38,86 @@ public class Pointcuts {
3838
*/
3939
@Pointcut("within(com.github._1c_syntax.bsl.languageserver..*)")
4040
public void isBSLLanguageServerScope() {
41+
// no-op
4142
}
4243

4344
/**
4445
* Это обращение к классу {@link LanguageServerConfiguration}.
4546
*/
4647
@Pointcut("within(com.github._1c_syntax.bsl.languageserver.configuration.LanguageServerConfiguration)")
4748
public void isLanguageServerConfiguration() {
49+
// no-op
4850
}
4951

5052
/**
5153
* Это обращение к классу {@link DocumentContext}.
5254
*/
5355
@Pointcut("within(com.github._1c_syntax.bsl.languageserver.context.DocumentContext)")
5456
public void isDocumentContext() {
57+
// no-op
5558
}
5659

5760
/**
5861
* Это обращение к реализации {@link LanguageServer}.
5962
*/
6063
@Pointcut("within(org.eclipse.lsp4j.services.LanguageServer+)")
6164
public void isLanguageServer() {
65+
// no-op
6266
}
6367

6468
/**
6569
* Это обращение к классу {@link ServerContext}.
6670
*/
6771
@Pointcut("within(com.github._1c_syntax.bsl.languageserver.context.ServerContext)")
6872
public void isServerContext() {
73+
// no-op
6974
}
7075

7176
/**
7277
* Это обращение к реализации интерфейса {@link BSLDiagnostic}.
7378
*/
7479
@Pointcut("within(com.github._1c_syntax.bsl.languageserver.diagnostics.BSLDiagnostic+)")
7580
public void isBSLDiagnostic() {
81+
// no-op
7682
}
7783

7884
/**
7985
* Это вызов метода rebuild.
8086
*/
8187
@Pointcut("isBSLLanguageServerScope() && execution(* rebuild(..))")
8288
public void isRebuildCall() {
89+
// no-op
8390
}
8491

8592
/**
8693
* Это вызов метода update.
8794
*/
8895
@Pointcut("isBSLLanguageServerScope() && execution(* update(..))")
8996
public void isUpdateCall() {
97+
// no-op
9098
}
9199

92100
/**
93101
* Это вызов метода reset.
94102
*/
95103
@Pointcut("isBSLLanguageServerScope() && execution(* reset(..))")
96104
public void isResetCall() {
105+
// no-op
97106
}
98107

99108
/**
100109
* Это вызов метода getDiagnostics.
101110
*/
102111
@Pointcut("isBSLLanguageServerScope() && execution(* getDiagnostics(..))")
103112
public void isGetDiagnosticsCall() {
113+
// no-op
104114
}
105115

106116
/**
107117
* Это вызов метода initialize.
108118
*/
109119
@Pointcut("isBSLLanguageServerScope() && execution(* initialize(..))")
110120
public void isInitializeCall() {
121+
// no-op
111122
}
112123
}

0 commit comments

Comments
 (0)