refactor: Update Unity to 2022.3.62
This commit is contained in:
@@ -12,8 +12,7 @@ namespace Cryville.Crtr.Config {
|
||||
readonly object _target;
|
||||
|
||||
public DefaultPropertyMasterAdapter(object target) {
|
||||
if (target == null) throw new ArgumentNullException("target");
|
||||
_target = target;
|
||||
_target = target ?? throw new ArgumentNullException("target");
|
||||
}
|
||||
|
||||
public string DefaultCategory { get { return "miscellaneous"; } }
|
||||
|
Reference in New Issue
Block a user