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