Rename get_id_mut (#332)

Renamed to get_with_id_mut to be parallel with get_with_id.
This commit is contained in:
Noah Callaway 2020-09-01 17:12:36 -07:00 committed by GitHub
parent 4e587db775
commit a1e254d075
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,10 +61,10 @@ impl<T: Resource> Assets<T> {
}
pub fn get_with_id(&self, id: HandleId) -> Option<&T> {
self.assets.get(&Handle::from_id(id))
self.get(&Handle::from_id(id))
}
pub fn get_id_mut(&mut self, id: HandleId) -> Option<&mut T> {
pub fn get_with_id_mut(&mut self, id: HandleId) -> Option<&mut T> {
self.get_mut(&Handle::from_id(id))
}