mirror of https://github.com/apache/cloudstack.git
ApiDiscoveryServiceImpl: Fix fields variable definition from array to set
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
a8623bacd7
commit
34f3e1c9a1
|
|
@ -107,7 +107,7 @@ public class ApiDiscoveryServiceImpl implements ApiDiscoveryService {
|
|||
}
|
||||
}
|
||||
|
||||
Field[] fields = ReflectUtil.getAllFieldsForClass(cmdClass,
|
||||
Set<Field> fields = ReflectUtil.getAllFieldsForClass(cmdClass,
|
||||
new Class<?>[]{BaseCmd.class, BaseAsyncCmd.class, BaseAsyncCreateCmd.class});
|
||||
|
||||
boolean isAsync = ReflectUtil.isCmdClassAsync(cmdClass,
|
||||
|
|
|
|||
Loading…
Reference in New Issue