Skip to content

Commit

Permalink
docs(dpg): fix no return statement in DeveloperDrivenEvolution.md (Az…
Browse files Browse the repository at this point in the history
  • Loading branch information
archerzz authored May 11, 2022
1 parent 1e11c26 commit e56a0f6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions doc/DataPlaneCodeGeneration/DeveloperDrivenEvolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ namespace Azure.AI.MetricsAdvisor

// Calling deserialization helper
MetricFeedback value = MetricFeedback.FromResponse(response);

// return the response
return Response.FromValue(value, response);
}
}
}
Expand Down Expand Up @@ -162,6 +165,9 @@ namespace Azure.AI.MetricsAdvisor

// Calling deserialization helper
MetricFeedback value = MetricFeedback.FromResponse(response);

// return the response
return Response.FromValue(value, response);
}
}
}
Expand Down

0 comments on commit e56a0f6

Please sign in to comment.