Skip to content

Commit c57209f

Browse files
committed
fix: satisfy license headers and formatting checks
Update license headers and autoformat factory URL parser sources after IPv6 parsing changes. Ignore Quarkus-generated panache marker to avoid committing build artifacts. Signed-off-by: Oleksii Orel <oorel@redhat.com>
1 parent 0aa27e1 commit c57209f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,6 @@ tests/e2e/load-test-folder
101101

102102
# Develocity
103103
.mvn/.develocity/develocity-workspace-id
104+
105+
# Quarkus / Panache generated markers
106+
panache-archive.marker

wsmaster/che-core-api-factory-azure-devops/src/main/java/org/eclipse/che/api/factory/server/azure/devops/AzureDevOpsURLParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2025 Red Hat, Inc.
2+
* Copyright (c) 2012-2026 Red Hat, Inc.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/

wsmaster/che-core-api-factory-github-common/src/main/java/org/eclipse/che/api/factory/server/github/AbstractGithubURLParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2025 Red Hat, Inc.
2+
* Copyright (c) 2012-2026 Red Hat, Inc.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/

wsmaster/che-core-api-factory-gitlab-common/src/main/java/org/eclipse/che/api/factory/server/gitlab/AbstractGitlabUrlParser.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2025 Red Hat, Inc.
2+
* Copyright (c) 2012-2026 Red Hat, Inc.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/
@@ -175,7 +175,8 @@ private Optional<Matcher> getPatternMatcherByUrl(String url) {
175175
.findAny()
176176
.or(
177177
() -> {
178-
Matcher matcher = compile(format(gitlabSSHPatternTemplate, hostForRegex)).matcher(url);
178+
Matcher matcher =
179+
compile(format(gitlabSSHPatternTemplate, hostForRegex)).matcher(url);
179180
if (matcher.matches()) {
180181
return Optional.of(matcher);
181182
}

0 commit comments

Comments
 (0)