Use 'new' expression in places where the type is evident for content (#2590)
* Content.Client * Content.Benchmarks * Content.IntegrationTests * Content.Server * Content.Server.Database * Content.Shared * Content.Tests * Merge fixes Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Content.Server.Cargo
|
||||
{
|
||||
public class CargoOrderDatabase
|
||||
{
|
||||
private readonly Dictionary<int, CargoOrderData> _orders = new Dictionary<int, CargoOrderData>();
|
||||
private readonly Dictionary<int, CargoOrderData> _orders = new();
|
||||
private int _orderNumber = 0;
|
||||
|
||||
public CargoOrderDatabase(int id)
|
||||
|
||||
Reference in New Issue
Block a user