Fix XMM scanning on Mac x86.
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Converters / EmptySearchableStringConverter.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.Converters
8 {
9     using System;
10     using System.Collections.Generic;
11
12     internal class EmptySearchableStringConverter : SearchableStringConverter
13     {
14         public override IList<string> Convert(object value)
15         {
16             return new List<string>();
17         }
18     }
19 }