We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37eafa4 commit ae313c9Copy full SHA for ae313c9
indexes/firmwareindex/firmwareindex.go
@@ -152,9 +152,7 @@ func (i *Index) GetBoard(fqbn string) *IndexBoard {
152
153
// Overlaps returns true if the two IndexBoard represent the same board.
154
func (b *IndexBoard) Overlaps(x *IndexBoard) bool {
155
- return b.Fqbn == x.Fqbn &&
156
- b.Module == x.Module &&
157
- b.Name == x.Name
+ return b.Fqbn == x.Fqbn && b.Module == x.Module
158
}
159
160
// GetFirmware returns the specified IndexFirmware version for this board.
0 commit comments