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 org.eclipse.wildwebdeveloper.xml.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.wildwebdeveloper.xml.feature"
label="%name"
version="1.3.8.qualifier"
version="1.3.9.qualifier"
provider-name="Eclipse Wild Web Developer project"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.wildwebdeveloper.xml.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
<packaging>eclipse-feature</packaging>
<version>1.3.8-SNAPSHOT</version>
<version>1.3.9-SNAPSHOT</version>
</project>
2 changes: 1 addition & 1 deletion org.eclipse.wildwebdeveloper.xml/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.wildwebdeveloper.xml;singleton:=true
Bundle-Version: 1.3.8.qualifier
Bundle-Version: 1.3.9.qualifier
Bundle-License: EPL-2.0;link="http://www.eclipse.org/legal/epl-2.0"
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022, 2023 Red Hat Inc. and others.
* Copyright (c) 2022, 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
* which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down Expand Up @@ -102,7 +102,7 @@ private void autoInsert(DocumentEvent event) {
return;
}
IDocument document = event.getDocument();
if (document == null || event == null || event.getLength() != 0 || event.getText().length() != 1) {
if (document == null || event.getLength() != 0 || event.getText().length() != 1) {
return;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022, 2024 Red Hat Inc. and others.
* Copyright (c) 2022, 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
* which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down Expand Up @@ -57,7 +57,7 @@ private void autoInsert(DocumentEvent event) {
return;
}
IDocument document = event.getDocument();
if (document == null || event == null || event.getLength() != 0 || event.getText().length() != 1) {
if (document == null || event.getLength() != 0 || event.getText().length() != 1) {
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public CompletableFuture<Void> fsWatcherCreate(final Map<String, Object> params)
final var uri = params.get("uri");
if (uri == null)
return null;
final var path = uri == null ? null : FileUtils.uriToPath(uri.toString());
final var path = FileUtils.uriToPath(uri.toString());

@SuppressWarnings("unchecked")
final Map<String, Object> options = params.get("options") instanceof Map //
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2022, 2024 Red Hat Inc. and others.
* Copyright (c) 2022, 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
* which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down Expand Up @@ -51,7 +51,7 @@ private void autoInsert(DocumentEvent event) {
return;
}
IDocument document = event.getDocument();
if (document == null || event == null || event.getLength() != 0) {
if (document == null || event.getLength() != 0) {
return;
}

Expand Down