Skip to content

Commit

Permalink
Remove unnecessary casts (#647)
Browse files Browse the repository at this point in the history
* Remove unnecessary casts and bump versions
  • Loading branch information
stephan-herrmann authored Jun 20, 2024
1 parent 029433d commit 50e03e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bundles/org.eclipse.equinox.app/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.equinox.app; singleton:=true
Bundle-Version: 1.7.100.qualifier
Bundle-Version: 1.7.200.qualifier
Bundle-Vendor: %providerName
Bundle-Activator: org.eclipse.equinox.internal.app.Activator
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ else if (((EclipseAppDescriptor) appHandle.getApplicationDescriptor())
.getCardinalityType() == EclipseAppDescriptor.FLAG_CARD_LIMITED) {
if (activeLimited != null) {
ArrayList<EclipseAppHandle> limited = activeLimited
.get(((EclipseAppDescriptor) appHandle.getApplicationDescriptor()).getApplicationId());
.get(appHandle.getApplicationDescriptor().getApplicationId());
if (limited != null)
limited.remove(appHandle);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void frameworkEvent(FrameworkEvent event) {
return;
if (!(event.getThrowable() instanceof ServiceException))
return;
if (((ServiceException) event.getThrowable()).getCause() != exception)
if (event.getThrowable().getCause() != exception)
return;
if (((ServiceException) event.getThrowable()).getType() != exceptionType)
return;
Expand Down
2 changes: 1 addition & 1 deletion features/org.eclipse.equinox.compendium.sdk/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.equinox.compendium.sdk"
label="%featureName"
version="3.23.100.qualifier"
version="3.23.200.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down

0 comments on commit 50e03e5

Please sign in to comment.