|
14 | 14 | * limitations under the License. |
15 | 15 | */ |
16 | 16 | 'use strict'; |
17 | | -var util = require("util"); |
18 | | -var deepcopy = require('deepcopy'); |
19 | 17 | var valcheck = require('core-util-is'); |
20 | 18 |
|
21 | 19 | var requester = require('./requester.js'); |
@@ -77,7 +75,7 @@ function Documents(client) { |
77 | 75 | */ |
78 | 76 |
|
79 | 77 | /** @ignore */ |
80 | | -function probeOutputTransform(headers) { |
| 78 | +function probeOutputTransform(/*headers, data*/) { |
81 | 79 | /*jshint validthis:true */ |
82 | 80 | var operation = this; |
83 | 81 |
|
@@ -559,8 +557,7 @@ function singleWriteOutputTransform(headers, data) { |
559 | 557 | } |
560 | 558 | /** @ignore */ |
561 | 559 | function writeListOutputTransform(headers, data) { |
562 | | - /*jshint validthis:true */ |
563 | | - var operation = this; |
| 560 | +// var operation = this; |
564 | 561 |
|
565 | 562 | var systemTime = headers.systemTime; |
566 | 563 | if (valcheck.isNullOrUndefined(systemTime)) { |
@@ -1084,7 +1081,7 @@ function collectMetadata(document) { |
1084 | 1081 | } |
1085 | 1082 |
|
1086 | 1083 | /** @ignore */ |
1087 | | -function removeOutputTransform(headers, data) { |
| 1084 | +function removeOutputTransform(headers/*, data*/) { |
1088 | 1085 | /*jshint validthis:true */ |
1089 | 1086 | var operation = this; |
1090 | 1087 |
|
@@ -1210,7 +1207,7 @@ function removeDocumentImpl(contentOnly, isLegacy, args) { |
1210 | 1207 | return requester.startRequest(operation); |
1211 | 1208 | } |
1212 | 1209 |
|
1213 | | -function removeAllOutputTransform(headers, data) { |
| 1210 | +function removeAllOutputTransform(/*headers, data*/) { |
1214 | 1211 | /*jshint validthis:true */ |
1215 | 1212 | var operation = this; |
1216 | 1213 |
|
@@ -1705,7 +1702,7 @@ function notNameFilter(key) { |
1705 | 1702 | } |
1706 | 1703 |
|
1707 | 1704 | /** @ignore */ |
1708 | | -function patchOutputTransform(headers, data) { |
| 1705 | +function patchOutputTransform(/*headers, data*/) { |
1709 | 1706 | /*jshint validthis:true */ |
1710 | 1707 | var operation = this; |
1711 | 1708 |
|
|
0 commit comments