1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Check if "*" is used to describe supported platforms.

This commit is contained in:
Mikhail Khodjaiants 2006-02-08 16:44:41 +00:00
parent 36d7840256
commit 43f8eb837a

View file

@ -114,7 +114,7 @@ public class CommandFactoryDescriptor {
public boolean supportsPlatform( String platform ) {
Set all = getSupportedPlatforms();
return all.isEmpty() || all.contains( platform );
return all.isEmpty() || all.contains( "*" ) || all.contains( platform ); //$NON-NLS-1$
}
public String[] getSupportedPlatformList() {