| 1027 | } |
| 1028 | |
| 1029 | void AppWindow::onLSPTimerElapsedJava() |
| 1030 | { |
| 1031 | auto *tab = currentWindow(); |
| 1032 | if (tab == nullptr) |
| 1033 | return; |
| 1034 | |
| 1035 | if (SettingsHelper::isLSPUseLintingJava() && tab->getLanguage() == "Java") |
| 1036 | javaServer->requestLinting(); |
| 1037 | |
| 1038 | lspTimerJava->stop(); |
| 1039 | } |
| 1040 | |
| 1041 | void AppWindow::onLSPTimerElapsedPython() |
| 1042 | { |
nothing calls this directly
no test coverage detected