提交 2a674201 编写于 作者: M mindless

fix indent


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@21657 71c3de6d-444a-0410-be80-ed276b4c234a
上级 db93c57e
...@@ -131,12 +131,12 @@ public class ParametersAction implements Action, Iterable<ParameterValue>, Queue ...@@ -131,12 +131,12 @@ public class ParametersAction implements Action, Iterable<ParameterValue>, Queue
if (others.isEmpty()) { if (others.isEmpty()) {
return !parameters.isEmpty(); return !parameters.isEmpty();
} else { } else {
// I don't think we need multiple ParametersActions, but let's be defensive // I don't think we need multiple ParametersActions, but let's be defensive
Set<ParameterValue> parameters = new HashSet<ParameterValue>(); Set<ParameterValue> parameters = new HashSet<ParameterValue>();
for (ParametersAction other: others) { for (ParametersAction other: others) {
parameters.addAll(other.parameters); parameters.addAll(other.parameters);
} }
return !parameters.equals(new HashSet<ParameterValue>(this.parameters)); return !parameters.equals(new HashSet<ParameterValue>(this.parameters));
} }
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册