mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-06-09 10:06:34 +02:00
Update LangVersion to 9 for all Robust projects (#1414)
This commit is contained in:
@@ -94,8 +94,8 @@ namespace Robust.Client.UserInterface
|
||||
: base(name, owningType, typeof(T), defaultValue,
|
||||
validate != null ? o => validate!((T) o!) : (Func<object?, bool>?) null,
|
||||
changed != null
|
||||
? (o, ev) => changed!(o, new AttachedPropertyChangedEventArgs<T>((T) ev.NewValue!, (T) ev.OldValue!))
|
||||
: (AttachedPropertyChangedCallback?) null)
|
||||
? (AttachedPropertyChangedCallback?) ((o, ev) => changed!(o, new AttachedPropertyChangedEventArgs<T>((T) ev.NewValue!, (T) ev.OldValue!)))
|
||||
: null)
|
||||
{
|
||||
Validate = validate;
|
||||
Changed = changed;
|
||||
|
||||
Reference in New Issue
Block a user