Skip to content

Commit 75f9b36

Browse files
committed
format
1 parent b3c8065 commit 75f9b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/http-client-csharp/emitter/src/lib/operation-converter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,14 +952,14 @@ export function getMethodParameterSegments(
952952

953953
const namespace = getClientNamespaceString(sdkContext) ?? "";
954954
const methodParams: InputMethodParameter[] = [];
955-
955+
956956
// Convert each element in the segment path to an InputMethodParameter
957957
// This preserves the full path information (e.g., ['Params', 'foo'])
958958
for (const segment of firstSegmentPath) {
959959
const methodParam = segment as SdkMethodParameter;
960960
methodParams.push(fromMethodParameter(sdkContext, methodParam, namespace));
961961
}
962-
962+
963963
return methodParams.length > 0 ? methodParams : undefined;
964964
}
965965

0 commit comments

Comments
 (0)