Arlodotexe / strix-music

Combine any music sources into a single library. It's your music. Play it your way.
http://www.strixmusic.com
139 stars 4 forks source link

[Refactor] Rename the async methods in CollectionInit with "Async" suffix. #209

Closed amaid closed 2 years ago

amaid commented 2 years ago

All methods in the CollectionInit static class are asynchronous tasks. It would be nice to rename all of them with "Async" suffix for example:

public static async Task TrackCollection(ITrackCollectionViewModel trackCollection,
 CancellationToken cancellationToken)`

should be

public static async Task TrackCollectionAsync(ITrackCollectionViewModel trackCollection, 
CancellationToken cancellationToken)

image

Arlodotexe commented 2 years ago

Agreed and approved. Feel free to self-assign if you start working on this, otherwise I'll take this when I get a chance.