提交 48068e07 编写于 作者: X xuelei

6453837: PartialCompositeContext.allEmpty is buggy

Reviewed-by: weijun
上级 c807201f
...@@ -493,9 +493,9 @@ public abstract class PartialCompositeContext implements Context, Resolver { ...@@ -493,9 +493,9 @@ public abstract class PartialCompositeContext implements Context, Resolver {
* Tests whether a name contains a nonempty component. * Tests whether a name contains a nonempty component.
*/ */
protected static boolean allEmpty(Name name) { protected static boolean allEmpty(Name name) {
Enumeration enum_ = name.getAll(); Enumeration<String> enum_ = name.getAll();
while (enum_.hasMoreElements()) { while (enum_.hasMoreElements()) {
if (!enum_.equals("")) { if (!enum_.nextElement().isEmpty()) {
return false; return false;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册