ContributedPlatform.toString() is used as item in dropdown, so it should print only its version

This commit is contained in:
Federico Fissore 2015-05-29 15:12:32 +02:00
parent 5933a7e8d3
commit a48906e0c2
1 changed files with 1 additions and 1 deletions

View File

@ -93,6 +93,6 @@ public abstract class ContributedPlatform extends DownloadableContribution {
@Override
public String toString() {
return getName() + " " + getParsedVersion();
return getParsedVersion();
}
}