1
- /*
2
- Copyright (c) 2019 VMware, Inc. All Rights Reserved.
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
+ // © Broadcom. All Rights Reserved.
2
+ // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
3
+ // SPDX-License-Identifier: Apache-2.0
16
4
17
5
package cns
18
6
@@ -49,9 +37,6 @@ func GetQuerySnapshotsTaskResult(ctx context.Context, taskInfo *vim25types.TaskI
49
37
}
50
38
if taskInfo .Result != nil {
51
39
snapshotQueryResult := taskInfo .Result .(cnstypes.CnsSnapshotQueryResult )
52
- if & snapshotQueryResult == nil {
53
- return nil , errors .New ("Cannot get SnapshotQueryResult" )
54
- }
55
40
return & snapshotQueryResult , nil
56
41
}
57
42
return nil , errors .New ("TaskInfo result is empty" )
@@ -64,9 +49,7 @@ func GetTaskResult(ctx context.Context, taskInfo *vim25types.TaskInfo) (cnstypes
64
49
}
65
50
if taskInfo .Result != nil {
66
51
volumeOperationBatchResult := taskInfo .Result .(cnstypes.CnsVolumeOperationBatchResult )
67
- if & volumeOperationBatchResult == nil ||
68
- volumeOperationBatchResult .VolumeResults == nil ||
69
- len (volumeOperationBatchResult .VolumeResults ) == 0 {
52
+ if len (volumeOperationBatchResult .VolumeResults ) == 0 {
70
53
return nil , errors .New ("Cannot get VolumeOperationResult" )
71
54
}
72
55
return volumeOperationBatchResult .VolumeResults [0 ], nil
@@ -81,9 +64,7 @@ func GetTaskResultArray(ctx context.Context, taskInfo *vim25types.TaskInfo) ([]c
81
64
}
82
65
if taskInfo .Result != nil {
83
66
volumeOperationBatchResult := taskInfo .Result .(cnstypes.CnsVolumeOperationBatchResult )
84
- if & volumeOperationBatchResult == nil ||
85
- volumeOperationBatchResult .VolumeResults == nil ||
86
- len (volumeOperationBatchResult .VolumeResults ) == 0 {
67
+ if len (volumeOperationBatchResult .VolumeResults ) == 0 {
87
68
return nil , errors .New ("Cannot get VolumeOperationResult" )
88
69
}
89
70
return volumeOperationBatchResult .VolumeResults , nil
0 commit comments