Skip to content

Commit bdc0c9d

Browse files
authored
Merge pull request #75 from BlaiseD/master
Remove reference to obsolete PrimitiveHelper.IsListOrDictionaryType.
2 parents df59fba + 834bfbe commit bdc0c9d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Authors>Jimmy Bogard</Authors>
44
<LangVersion>latest</LangVersion>
5-
<VersionPrefix>3.1.1-preview01</VersionPrefix>
5+
<VersionPrefix>3.1.1</VersionPrefix>
66
<WarningsAsErrors>true</WarningsAsErrors>
77
<NoWarn>$(NoWarn);1701;1702;1591</NoWarn>
88
</PropertyGroup>

src/AutoMapper.Extensions.ExpressionMapping/PrimitiveExtensions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ public static bool IsQueryableType(this Type type)
3737
public static bool IsListType(this Type type)
3838
=> PrimitiveHelper.IsListType(type);
3939

40-
public static bool IsListOrDictionaryType(this Type type)
41-
=> PrimitiveHelper.IsListOrDictionaryType(type);
42-
4340
public static bool IsDictionaryType(this Type type)
4441
=> PrimitiveHelper.IsDictionaryType(type);
4542

0 commit comments

Comments
 (0)