Code cleanup.

This commit is contained in:
2022-12-12 22:28:08 +08:00
parent 1477e907e6
commit a8658856ca
2 changed files with 117 additions and 117 deletions

View File

@@ -115,7 +115,6 @@ namespace Cryville.Crtr.Extensions.Bestdori {
i = n / d; n %= d; i = n / d; n %= d;
return new BeatTime(i, n, d); return new BeatTime(i, n, d);
} }
}
#pragma warning disable IDE1006 #pragma warning disable IDE1006
[JsonConverter(typeof(BestdoriChartEventCreator))] [JsonConverter(typeof(BestdoriChartEventCreator))]
@@ -185,4 +184,5 @@ namespace Cryville.Crtr.Extensions.Bestdori {
} }
} }
} }
}
} }

View File

@@ -162,7 +162,6 @@ namespace Cryville.Crtr.Extensions.Malody {
float ConvertBeat(int[] beat) { float ConvertBeat(int[] beat) {
return beat[0] + (float)beat[1] / beat[2]; return beat[0] + (float)beat[1] / beat[2];
} }
}
#pragma warning disable IDE1006 #pragma warning disable IDE1006
struct MalodyChart { struct MalodyChart {
@@ -228,4 +227,5 @@ namespace Cryville.Crtr.Extensions.Malody {
} }
} }
#pragma warning restore IDE1006 #pragma warning restore IDE1006
}
} }