@@ -14,7 +14,7 @@ namespace MuConvert.chu;
1414 */
1515public class UgcParser : BaseChuParser
1616{
17- private static int RSL = 480 * 4 ;
17+ private int RSL = 480 * 4 ;
1818 private int Version = 8 ;
1919
2020 public override ( ChuChart , List < Alert > ) Parse ( string text )
@@ -332,7 +332,7 @@ private int ParseNoteLine(string[] lines, int idx, ChuChart chart, List<Alert> a
332332 return idx ;
333333 }
334334
335- private static void ParseTapNote ( string code , ChuNote note , List < Alert > alerts , int lineNum , ChuChart chart , bool isCHR )
335+ private void ParseTapNote ( string code , ChuNote note , List < Alert > alerts , int lineNum , ChuChart chart , bool isCHR )
336336 {
337337 note . Type = "TAP" ;
338338 ParseCellWidth ( code , 1 , note , alerts , lineNum , chart ) ;
@@ -488,7 +488,7 @@ private static bool TryParseFollowerLine(string line, out string marker, out int
488488 return true ;
489489 }
490490
491- private static void ParseCellWidth ( string code , int startIdx , ChuNote note , List < Alert > alerts , int lineNum , ChuChart chart )
491+ private void ParseCellWidth ( string code , int startIdx , ChuNote note , List < Alert > alerts , int lineNum , ChuChart chart )
492492 {
493493 if ( code . Length > startIdx )
494494 {
@@ -579,7 +579,7 @@ private int ParseAirCrushNote(string[] lines, int idx, string code, ChuNote note
579579 }
580580
581581 // ReSharper disable once UnusedParameter.Local
582- private static string FormatNoteRef ( ChuNote note , string code )
582+ private string FormatNoteRef ( ChuNote note , string code )
583583 {
584584 var ( m , o ) = Utils . BarAndTick ( note . Time , RSL ) ;
585585 return $ "#{ m } '{ o } :{ code } ";
0 commit comments