Skip to content

Commit 501546d

Browse files
committed
refactor IOP Common.cls to improve multidimensional array conversion
1 parent d2106ff commit 501546d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/iop/cls/IOP/Common.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,13 @@ Method dispatchSendRequestSyncMultiple(
156156
set builtins = ##class(%SYS.Python).Import("builtins")
157157
// Convert %List to multidimensional array
158158
set tCallStructList=builtins.len(pCallStructList)
159-
$$$LOGINFO("pCallStructList: "_pCallStructList)
160159
for i=0:1:builtins.len(pCallStructList)-1 {
161160
set tCallStructList(i+1) = pCallStructList."__getitem__"(i)
162161
}
163162

164-
$$$LOGINFO("tCallStructList: "_tCallStructList(1))
165163
set tSC = ..SendRequestSyncMultiple(.tCallStructList,pTimeout)
166164
if $$$ISERR(tSC) throw ##class(%Exception.StatusException).CreateFromStatus(tSC)
165+
167166
// Convert multidimensional array to Python list
168167
set tResponseList = builtins.list()
169168

0 commit comments

Comments
 (0)