File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
src/main/java/io/cdap/plugin/gcp/gcs/actions Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 17
17
package io .cdap .plugin .gcp .gcs .actions ;
18
18
19
19
import com .google .cloud .kms .v1 .CryptoKeyName ;
20
- import com .google .cloud .storage .Bucket ;
21
- import com .google .cloud .storage .Storage ;
22
- import com .google .cloud .storage .StorageException ;
23
- import com .google .common .base .Strings ;
24
20
import io .cdap .cdap .api .annotation .Description ;
25
21
import io .cdap .cdap .api .annotation .Macro ;
26
22
import io .cdap .cdap .api .annotation .Name ;
30
26
import io .cdap .cdap .etl .api .action .Action ;
31
27
import io .cdap .cdap .etl .api .action .ActionContext ;
32
28
import io .cdap .plugin .gcp .common .CmekUtils ;
33
- import io .cdap .plugin .gcp .common .GCPUtils ;
34
29
import io .cdap .plugin .gcp .gcs .GCSPath ;
35
30
import io .cdap .plugin .gcp .gcs .StorageClient ;
36
31
37
32
import java .io .IOException ;
38
33
import java .util .ArrayList ;
39
- import java .util .Collections ;
40
34
import java .util .List ;
41
35
import javax .annotation .Nullable ;
42
36
@@ -57,7 +51,7 @@ public void configurePipeline(PipelineConfigurer pipelineConfigurer) {
57
51
}
58
52
59
53
@ Override
60
- public void run (ActionContext context ) throws IOException {
54
+ public void run (ActionContext context ) {
61
55
FailureCollector collector = context .getFailureCollector ();
62
56
config .validate (collector , context .getArguments ().asMap ());
63
57
You can’t perform that action at this time.
0 commit comments