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 29bb62e commit 6e685c4Copy full SHA for 6e685c4
.github/scripts/cldc11_api_compat_check.py
@@ -145,9 +145,9 @@ def parse_class_info(javap_output: str) -> ClassInfo:
145
kind = "class"
146
147
header_pattern = re.compile(
148
- r"(?P<visibility>public|protected)?\s*(?P<kind>class|interface|enum)\s+",
149
- r"(?P<name>[\w.$]+)",
150
- r"(?:\s+extends\s+(?P<extends>[^\{]+?))?",
+ r"(?P<visibility>public|protected)?\s*(?P<kind>class|interface|enum)\s+"
+ r"(?P<name>[\w.$]+)"
+ r"(?:\s+extends\s+(?P<extends>[^\{]+?))?"
151
r"(?:\s+implements\s+(?P<implements>[^\{]+))?",
152
)
153
0 commit comments