We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50708e commit 28b2657Copy full SHA for 28b2657
1 file changed
src/main/java/org/netbeans/modules/python/log/PythonLspLog.java
@@ -23,11 +23,11 @@
23
@Messages("CTL_PythonLspLog=Python Lsp Log")
24
public final class PythonLspLog implements ActionListener {
25
26
+ static final File f = PythonUtility.PYLSP_VENV_DIR.toPath().resolve("lsp_log_file").toFile();
27
+
28
@Override
29
public void actionPerformed(ActionEvent e) {
30
- File f = PythonUtility.PYLSP_VENV_DIR.toPath().resolve("lsp_log_file").toFile();
-
31
if (!f.exists()) {
32
return;
33
}
0 commit comments