mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
findbugs possible nullpointer mitigated
This commit is contained in:
parent
624139d8ef
commit
e431538b0a
@ -366,9 +366,13 @@ public class ApiServer extends ManagerBase implements HttpRequestHandler, ApiSer
|
|||||||
|
|
||||||
Class<?> cmdClass = getCmdClass(command[0]);
|
Class<?> cmdClass = getCmdClass(command[0]);
|
||||||
|
|
||||||
APICommand annotation = cmdClass.getAnnotation(APICommand.class);
|
|
||||||
|
|
||||||
if (cmdClass != null) {
|
if (cmdClass != null) {
|
||||||
|
APICommand annotation = cmdClass.getAnnotation(APICommand.class);
|
||||||
|
if (annotation == null) {
|
||||||
|
s_logger.error("No APICommand annotation found for class " + cmdClass.getCanonicalName());
|
||||||
|
throw new CloudRuntimeException("No APICommand annotation found for class " + cmdClass.getCanonicalName());
|
||||||
|
}
|
||||||
|
|
||||||
BaseCmd cmdObj = (BaseCmd)cmdClass.newInstance();
|
BaseCmd cmdObj = (BaseCmd)cmdClass.newInstance();
|
||||||
cmdObj = ComponentContext.inject(cmdObj);
|
cmdObj = ComponentContext.inject(cmdObj);
|
||||||
cmdObj.configure();
|
cmdObj.configure();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user