1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

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

View File

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