Skip to content

Commit

Permalink
fix: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
becket01 committed Jan 25, 2025
1 parent 19fcfc1 commit 080816e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/EoaServer.Application/Search/SearchAppService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using EoaServer.Entities.Es;
using EoaServer.Search.Dto;
using Nest;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using Volo.Abp;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Auditing;
Expand Down Expand Up @@ -36,10 +34,6 @@ public async Task<PagedResultDto<ChainsInfoDto>> GetChainsInfoAsync()

var (totalCount, list) = await _chainsInfoRepository.GetListAsync(Filter);

var serializeSetting = new JsonSerializerSettings
{
ContractResolver = new CamelCasePropertyNamesContractResolver()
};
return new PagedResultDto<ChainsInfoDto>
{
TotalCount = totalCount,
Expand Down

0 comments on commit 080816e

Please sign in to comment.