Skip to content

Commit 5e9c188

Browse files
committed
Fix CascadingTheme.keySet signature
There is no point in using raw Set as underlying data is not raw.
1 parent 910b6fc commit 5e9c188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/CascadingTheme.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public boolean getBoolean(String key) {
102102
}
103103

104104
@Override
105-
public Set keySet() {
105+
public Set<String> keySet() {
106106
return currentTheme.keySet();
107107
}
108108

0 commit comments

Comments
 (0)