Skip to content

Commit

Permalink
Merge pull request #149 from sebcrozet/fix_deprecated
Browse files Browse the repository at this point in the history
Fix the use of deprecated.
  • Loading branch information
sebcrozet authored Dec 29, 2018
2 parents 10a76ae + 9af0698 commit d77f73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl Window {
}

/// Removes an object from the scene.
#[deprecated = "Use `remove_node` instead."]
#[deprecated(note = "Use `remove_node` instead.")]
pub fn remove(&mut self, sn: &mut SceneNode) {
self.remove_node(sn)
}
Expand Down

0 comments on commit d77f73a

Please sign in to comment.