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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020 Red Hat Inc. and others.
* Copyright (c) 2020, 2025 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -187,7 +187,7 @@ private File openSelectFileDialog() {
return fileName == null || fileName.trim().length() == 0 ? null : new File(fileName);
}

class EntriesContentProvider implements ITreeContentProvider {
static class EntriesContentProvider implements ITreeContentProvider {
@Override
public Object[] getChildren(Object parentElement) {
if (parentElement instanceof Set<?> set) {
Expand Down Expand Up @@ -220,7 +220,7 @@ public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
}
}

class EntriesLabelProvider extends LabelProvider {
static class EntriesLabelProvider extends LabelProvider {
private Image image;

public EntriesLabelProvider() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2021 Red Hat Inc. and others.
* Copyright (c) 2021, 2025 Red Hat Inc. and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -226,7 +226,7 @@ private static URI convertToURI(URL url) throws URISyntaxException, MalformedURL
/**
* Check whether the provided scheme is supported for the XML-catalog
*
* @param scheme scheme to test
* @param uri scheme to test
* @return <code>true</code> if supported, otherwise <code>false</code>
*/
private static boolean isSchemeSupportedInCatalog(URI uri) {
Expand Down