提交 35206987 编写于 作者: K kohsuke

[FIXED HUDSON-4032] Fixed in 1.316.

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@19718 71c3de6d-444a-0410-be80-ed276b4c234a
上级 e7e43a3b
......@@ -102,9 +102,9 @@ public class EnvironmentVariablesNodeProperty extends NodeProperty<Node> {
private static EnvVars toMap(List<Entry> entries) {
EnvVars map = new EnvVars();
for (Entry entry: entries) {
map.put(entry.key,entry.value);
}
if (entries!=null)
for (Entry entry: entries)
map.put(entry.key,entry.value);
return map;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册