Skip to content

Commit

Permalink
Update to unified section function names.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwood committed Jun 14, 2024
1 parent 06a7f5a commit 9cb30c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.22.2
require (
github.com/shimmeringbee/bytecodec v0.0.0-20240614104652-9d31c74dcd13
github.com/shimmeringbee/logwrap v0.1.3
github.com/shimmeringbee/persistence v0.0.0-20240614162125-05e0f3a3a718
github.com/shimmeringbee/persistence v0.0.0-20240614163143-a99424e4d61c
github.com/shimmeringbee/retry v0.0.0-20240614104711-064c2726a8b4
github.com/shimmeringbee/unpi v0.0.0-20240614104715-5284f961bafc
github.com/shimmeringbee/zigbee v0.0.0-20240614104723-f4c0c0231568
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ github.com/shimmeringbee/persistence v0.0.0-20240614122634-f587e84f4d9e h1:2D/91
github.com/shimmeringbee/persistence v0.0.0-20240614122634-f587e84f4d9e/go.mod h1:Z5euPm65BHgTSRFgaWHByaXejU/J4oUqESV9k0VzQDU=
github.com/shimmeringbee/persistence v0.0.0-20240614162125-05e0f3a3a718 h1:iX4hgz0ye0t2ZR+ny3O8U8vQGW2TSm4x7jY0YdqNiCM=
github.com/shimmeringbee/persistence v0.0.0-20240614162125-05e0f3a3a718/go.mod h1:Z5euPm65BHgTSRFgaWHByaXejU/J4oUqESV9k0VzQDU=
github.com/shimmeringbee/persistence v0.0.0-20240614163143-a99424e4d61c h1:c86y9DJNOsvZHZ/XAwfzdIxmvPPRPsWhqylF8Ok6xfg=
github.com/shimmeringbee/persistence v0.0.0-20240614163143-a99424e4d61c/go.mod h1:Ob1eKGYM7+9P3LkB9vB9nr15d3trtS4D9KOnGoxOkp8=
github.com/shimmeringbee/retry v0.0.0-20221006193055-2ce01bf139c2 h1:HxpPz7w7SxVf1GmcM5oTK1JK64TGpK1UflweYRSOwC4=
github.com/shimmeringbee/retry v0.0.0-20221006193055-2ce01bf139c2/go.mod h1:KYvVq5b7/BSSlWng+AKB5jwNGpc0D7eg8ySWrdPAlms=
github.com/shimmeringbee/retry v0.0.0-20240614104711-064c2726a8b4 h1:YU77guV/6/9nJymm4K1JH6MIx6yE/NfUnFX//yo3GfM=
Expand Down
2 changes: 1 addition & 1 deletion node_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (t *nodeTable) remove(ieeeAddress zigbee.IEEEAddress) {
delete(t.ieeeToNode, node.IEEEAddress)
}

t.p.DeleteSection(ieeeAddress.String())
t.p.SectionDelete(ieeeAddress.String())
}

func (t *nodeTable) load() {
Expand Down

0 comments on commit 9cb30c9

Please sign in to comment.