Skip to content

Commit

Permalink
Addressing Reviewer's Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunmathew12 committed Jan 21, 2025
1 parent 82aaa64 commit 6460664
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public void Load(IServiceCollection services)
};

#if STU3 || R4 || R4B
// These converters are required only for R5.
searchValueConverterExclusions.Add(typeof(CanonicalToReferenceSearchValueConverter));
searchValueConverterExclusions.Add(typeof(IdentifierToStringSearchValueConverter));
searchValueConverterExclusions.Add(typeof(IdToReferenceSearchValueConverter));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ private static EnumerableReturnType Visit(BinaryExpression expression, Context c
else if (expression.Op == "|" ||
expression.Op == "!=" ||
expression.Op == "==" ||
expression.Op == "and" ||
expression.Op == "-")
expression.Op == "and")
{
foreach (Expression innerExpression in expression.Arguments)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
// -------------------------------------------------------------------------------------------------

using System;
using Hl7.Fhir.Model;
using Microsoft.Azure.Cosmos.Linq;

namespace Microsoft.Health.Fhir.Tests.E2E.Extensions
{
Expand Down

0 comments on commit 6460664

Please sign in to comment.