优化结果返回

This commit is contained in:
tanghc
2020-01-02 10:31:37 +08:00
parent 0774e52cc9
commit a12f08a485

View File

@@ -261,7 +261,7 @@ public abstract class BaseExecutorAdapter<T, R> implements ResultExecutor<T, R>
return null;
}
Isv isvInfo = isvManager.getIsv(appKey);
String privateKeyPlatform = isvInfo.getPrivateKeyPlatform();
String privateKeyPlatform = isvInfo == null ? null : isvInfo.getPrivateKeyPlatform();
if (StringUtils.isEmpty(privateKeyPlatform)) {
return null;
}