提交 45e326bb 编写于 作者: O Olivier Lamy

NPE check

上级 092286dc
......@@ -286,8 +286,12 @@ public class RedeployPublisher extends Recorder {
return MavenUtil.createEmbedder(mavenEmbedderRequest);
} finally {
tmpSettings.delete();
remoteSettingsFromConfig.delete();
if (tmpSettings != null) {
tmpSettings.delete();
}
if (remoteSettingsFromConfig != null) {
remoteSettingsFromConfig.delete();
}
FileUtils.deleteQuietly( remoteGlobalSettingsFromConfig );
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册