Skip to content

Commit

Permalink
Rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Dec 6, 2024
1 parent 07c97be commit 70ff1be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/FwLite/LcmCrdt/Json.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public static bool IsIndexerPropertyMethod(MethodInfo method)
public static IJsonTypeInfoResolver MakeLcmCrdtExternalJsonTypeResolver(this CrdtConfig config)
{
var resolver = config.MakeJsonTypeResolver();
resolver = resolver.AddMiniLcmModifiers();
resolver = resolver.AddExternalMiniLcmModifiers();
return resolver;
}
}
2 changes: 1 addition & 1 deletion backend/FwLite/MiniLcm/MiniLcmJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public static class MiniLcmJson
{
public static IJsonTypeInfoResolver AddMiniLcmModifiers(this IJsonTypeInfoResolver resolver)
public static IJsonTypeInfoResolver AddExternalMiniLcmModifiers(this IJsonTypeInfoResolver resolver)
{
resolver = resolver.WithAddedModifier(IgnoreInternalMiniLcmProperties);
return resolver;
Expand Down

0 comments on commit 70ff1be

Please sign in to comment.