Fix findbugs RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE in DataCenterVO.java Assert isn't used in prod runtime

Signed-off-by: Daan Hoogland <daan.hoogland@gmail.com>
This commit is contained in:
Rafael da Fonseca 2015-06-14 21:39:47 +02:00 committed by Daan Hoogland
parent eaa4eba74d
commit b3d49d9135
1 changed files with 0 additions and 2 deletions

View File

@ -375,8 +375,6 @@ public class DataCenterVO implements DataCenter {
}
public String getDetail(String name) {
assert (details != null) : "Did you forget to load the details?";
return details != null ? details.get(name) : null;
}