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 17a8e7d commit 7cc5b86Copy full SHA for 7cc5b86
crates/bevy_ecs/src/world/mod.rs
@@ -115,13 +115,6 @@ impl World {
115
InteriorMutableWorld::new(self)
116
}
117
118
- /// Creates a new [`InteriorMutableWorld`] with read+write access from a [&World](World).
119
- /// This is only a temporary measure until every `&World` that is semantically a [`InteriorMutableWorld`]
120
- /// has been replaced.
121
- pub(crate) fn as_interior_mutable_migration_internal(&self) -> InteriorMutableWorld<'_> {
122
- InteriorMutableWorld::new(self)
123
- }
124
-
125
/// Retrieves this world's [Entities] collection
126
#[inline]
127
pub fn entities(&self) -> &Entities {
0 commit comments