Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "java-functional-lsp"
version = "0.7.5"
version = "0.7.6"
description = "Java LSP server enforcing functional programming best practices — null safety, immutability, no exceptions"
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion src/java_functional_lsp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""java-functional-lsp: A Java LSP server enforcing functional programming best practices."""

__version__ = "0.7.5"
__version__ = "0.7.6"
2 changes: 2 additions & 0 deletions src/java_functional_lsp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ def __init__(self) -> None:

def _on_jdtls_diagnostics(self, uri: str, diagnostics: list[Any]) -> None:
"""Called when jdtls publishes diagnostics — merge with custom and re-publish."""
if not uri.endswith(".java"):
return
try:
_analyze_and_publish(uri)
except Exception as e:
Expand Down
Loading