File tree Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright Mia srl
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 (the "License");
5
+ // you may not use this file except in compliance with the License.
6
+ // You may obtain a copy of the License at
7
+ //
8
+ // http://www.apache.org/licenses/LICENSE-2.0
9
+ //
10
+ // Unless required by applicable law or agreed to in writing, software
11
+ // distributed under the License is distributed on an "AS IS" BASIS,
12
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ // See the License for the specific language governing permissions and
14
+ // limitations under the License.
15
+
1
16
package clioptions
2
17
3
18
import (
Original file line number Diff line number Diff line change @@ -21,19 +21,19 @@ import (
21
21
22
22
type NopPrinter struct {}
23
23
24
- func (n * NopPrinter ) SetWriter (w io.Writer ) IPrinter {
24
+ func (n * NopPrinter ) SetWriter (_ io.Writer ) IPrinter {
25
25
return n
26
26
}
27
27
28
- func (n * NopPrinter ) Keys (keys ... string ) IPrinter {
28
+ func (n * NopPrinter ) Keys (_ ... string ) IPrinter {
29
29
return n
30
30
}
31
31
32
- func (n * NopPrinter ) Record (recordValues ... string ) IPrinter {
32
+ func (n * NopPrinter ) Record (_ ... string ) IPrinter {
33
33
return n
34
34
}
35
35
36
- func (n * NopPrinter ) BulkRecords (records ... []string ) IPrinter {
36
+ func (n * NopPrinter ) BulkRecords (_ ... []string ) IPrinter {
37
37
return n
38
38
}
39
39
Original file line number Diff line number Diff line change 5
5
// you may not use this file except in compliance with the License.
6
6
// You may obtain a copy of the License at
7
7
//
8
- // http://www.apache.org/licenses/LICENSE-2.0
8
+ // http://www.apache.org/licenses/LICENSE-2.0
9
9
//
10
10
// Unless required by applicable law or agreed to in writing, software
11
11
// distributed under the License is distributed on an "AS IS" BASIS,
You can’t perform that action at this time.
0 commit comments