mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
AVR bundle: by default the IDE is built bundled with the avr toolchain and cores
By passing -Dlight_bundle=1 to ant, an light/empty IDE is built
This commit is contained in:
@ -142,7 +142,7 @@ public class ContributionIndexTableModel extends FilteredAbstractTableModel {
|
||||
for (ContributedPackage pack : index.getPackages()) {
|
||||
for (ContributedPlatform platform : pack.getPlatforms()) {
|
||||
if (category != null) {
|
||||
if (!platform.getCategory().equals(category))
|
||||
if (!category.equals(platform.getCategory()))
|
||||
continue;
|
||||
}
|
||||
if (!stringContainsAll(platform.getName(), filters))
|
||||
|
Reference in New Issue
Block a user