File tree Expand file tree Collapse file tree 3 files changed +2
-51
lines changed
app/src/cc/arduino/contributions Expand file tree Collapse file tree 3 files changed +2
-51
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 29
29
30
30
package cc .arduino .contributions .packages .ui ;
31
31
32
- import cc .arduino .contributions .filters .NoopPredicate ;
33
32
import cc .arduino .contributions .packages .ContributedPlatform ;
34
33
import cc .arduino .contributions .ui .DropdownItem ;
35
34
@@ -45,7 +44,7 @@ public String toString() {
45
44
46
45
@ Override
47
46
public Predicate <ContributedPlatform > getFilterPredicate () {
48
- return new NoopPredicate <>() ;
47
+ return x -> true ;
49
48
}
50
49
51
50
@ Override
Original file line number Diff line number Diff line change 30
30
package cc .arduino .contributions .ui ;
31
31
32
32
import cc .arduino .contributions .DownloadableContribution ;
33
- import cc .arduino .contributions .filters .NoopPredicate ;
34
33
35
34
import java .util .function .Predicate ;
36
35
@@ -44,7 +43,7 @@ public String toString() {
44
43
45
44
@ Override
46
45
public Predicate <DownloadableContribution > getFilterPredicate () {
47
- return new NoopPredicate <>() ;
46
+ return x -> true ;
48
47
}
49
48
50
49
@ Override
You can’t perform that action at this time.
0 commit comments