Skip to content

Commit 9c745b0

Browse files
committed
Remove deprecated RefInstance, TypedArray
1 parent 9ca2b40 commit 9c745b0

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

gdnative/src/prelude.rs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,3 @@ pub mod user_data {
3636
}
3737
#[doc(inline)]
3838
pub use crate::globalscope::load;
39-
40-
// Deprecated symbols. Keep them only in prelude, as all the other paths have changed anyway.
41-
// This way, old symbol names are still discoverable and users who used prelude won't have (as many) breaking changes.
42-
// Important: the referred-to type (right-hand-side) should point into the full path, not the prelude re-export.
43-
44-
#[deprecated(since = "0.10.0", note = "Confusing name; use TInstance instead.")]
45-
pub type RefInstance<'a, T, Own> = crate::object::TInstance<'a, T, Own>;
46-
47-
#[deprecated(
48-
since = "0.10.0",
49-
note = "Renamed for GDScript consistency; use PoolArray instead."
50-
)]
51-
pub type TypedArray<T> = crate::core_types::PoolArray<T>;

0 commit comments

Comments
 (0)