Skip to content
Open
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
4 changes: 2 additions & 2 deletions ua/org.eclipse.help/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %help_plugin_name
Bundle-SymbolicName: org.eclipse.help; singleton:=true
Bundle-Version: 3.11.100.qualifier
Bundle-Version: 3.11.200.qualifier
Bundle-Activator: org.eclipse.help.internal.HelpPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Export-Package: org.eclipse.help,
Export-Package: org.eclipse.help;uses:="org.eclipse.core.expressions",
org.eclipse.help.internal;
x-friends:="org.eclipse.help.base,
org.eclipse.help.ui,
Expand Down
2 changes: 1 addition & 1 deletion ua/org.eclipse.help/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</parent>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.help</artifactId>
<version>3.11.100-SNAPSHOT</version>
<version>3.11.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void appendChildren(IUAElement[] children) {
this.children = new ArrayList<>(4);
}
for (IUAElement child : children) {
appendChild(child instanceof UAElement ? (UAElement) child : UAElementFactory.newElement(child));
appendChild(child instanceof UAElement u ? u : UAElementFactory.newElement(child));
}
}

Expand Down
Loading