Skip to content

Commit

Permalink
Remove unnecessary lifetime annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed May 8, 2024
1 parent ec6aa6d commit d621f72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static MATTER_STACK: ConstStaticCell<WifiBleMatterStack> =
const LIGHT_ENDPOINT_ID: u16 = 1;

/// The Matter Light device Node
const NODE: Node<'static> = Node {
const NODE: Node = Node {
id: 0,
endpoints: &[
WifiBleMatterStack::root_metadata(),
Expand Down
2 changes: 1 addition & 1 deletion examples/light.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static MATTER_STACK: ConstStaticCell<WifiBleMatterStack> =
const LIGHT_ENDPOINT_ID: u16 = 1;

/// The Matter Light device Node
const NODE: Node<'static> = Node {
const NODE: Node = Node {
id: 0,
endpoints: &[
WifiBleMatterStack::root_metadata(),
Expand Down
2 changes: 1 addition & 1 deletion examples/light_eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ static MATTER_STACK: ConstStaticCell<EthMatterStack> = ConstStaticCell::new(EthM
const LIGHT_ENDPOINT_ID: u16 = 1;

/// The Matter Light device Node
const NODE: Node<'static> = Node {
const NODE: Node = Node {
id: 0,
endpoints: &[
EthMatterStack::root_metadata(),
Expand Down

0 comments on commit d621f72

Please sign in to comment.