mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Redundant empty argument list on object creation expression.
This commit is contained in:
@@ -52,7 +52,7 @@ namespace DiscImageChef.Core
|
||||
if(File.Exists(Path.Combine(Settings.Settings.StatsPath, "Statistics.xml")))
|
||||
{
|
||||
AllStats = new Stats();
|
||||
CurrentStats = new Stats()
|
||||
CurrentStats = new Stats
|
||||
{
|
||||
OperatingSystems =
|
||||
new List<OsStats>
|
||||
@@ -74,7 +74,7 @@ namespace DiscImageChef.Core
|
||||
else if(Settings.Settings.Current.Stats != null)
|
||||
{
|
||||
AllStats = new Stats();
|
||||
CurrentStats = new Stats()
|
||||
CurrentStats = new Stats
|
||||
{
|
||||
OperatingSystems =
|
||||
new List<OsStats>
|
||||
|
||||
Reference in New Issue
Block a user