Skip to content

Commit

Permalink
Issue 307: Remove unused parameter.
Browse files Browse the repository at this point in the history
This is no longer being used and I forgot to remove it in the previous commit.
  • Loading branch information
kaladay committed Oct 6, 2023
1 parent ed122c5 commit df676fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion purchase-orders/nodes/js/buildCompositePurchaseOrder.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (logLevel === 'DEBUG') {
print('\nacquisitionMethodsResponse = ' + acquisitionMethodsResponse + '\n');
}

var extractResponseArray = function (response, key, firstId, fallback) {
var extractResponseArray = function (response, key, firstId) {
if (!response || !response.totalRecords || response.totalRecords == 0 || !response[key]) {
return (firstId === true) ? undefined : [];
}
Expand Down

0 comments on commit df676fc

Please sign in to comment.