options is not used in call:
public static IEnumerable GetChildren(this ContentReference contentReference, LoaderOptions options) where T : IContentData
{
if (contentReference.IsNullOrEmpty())
{
return Enumerable.Empty();
}
var repository = ServiceLocator.Current.GetInstance<IContentLoader>();
return repository.GetChildren<T>(contentReference);
}