Skip to content

Commit 700b8e7

Browse files
committed
changed the function name from processXml to processResults
Signed-off-by: Eric Henson <ehenson238@gmail.com>
1 parent 4e5a2f0 commit 700b8e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/transports/odbcTransport.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function odbcCall(config, xmlInput, done) {
5252
console.log(`SQL to run is ${sql}`);
5353
}
5454

55-
function processXml(results) {
55+
function processResults(results) {
5656
if (!results) {
5757
done('Empty result set was returned', null);
5858
return;
@@ -79,10 +79,10 @@ function odbcCall(config, xmlInput, done) {
7979
return;
8080
}
8181

82-
processXml(results);
82+
processResults(results);
8383
});
8484
} else {
85-
processXml(results);
85+
processResults(results);
8686
}
8787
});
8888
}

0 commit comments

Comments
 (0)