Made IsAudioFile private

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-11 15:49:58 -04:00
parent 00545b5543
commit 82799df9be

View file

@ -23,7 +23,7 @@ namespace MediaBrowser.Controller.Resolvers
return null;
}
public static bool IsAudioFile(string path)
private static bool IsAudioFile(string path)
{
string extension = Path.GetExtension(path).ToLower();