kirillrakhman
06/23/2016, 2:44 PMString value = System.getProperty("key");
if(value != null) {
if(value == null) {
throw new TypeCastException("null cannot be cast to non-null type java.lang.String");
}
Intrinsics.checkExpressionValueIsNotNull(((String)value).toUpperCase(), "(this as java.lang.String).toUpperCase()");
}