8156984: JShell tool: for (FormatCase e : EnumSet.allOf(FormatCase.class))

Replacde EnumSet.allOf(FormatCase.class) with FormatCase.all

Reviewed-by: rfield
This commit is contained in:
Nadeesh TV 2016-08-29 09:58:42 +00:00
parent 1386ffb4f2
commit 70b349f565

@ -147,17 +147,17 @@ class Feedback {
}
{
for (FormatCase e : EnumSet.allOf(FormatCase.class))
for (FormatCase e : FormatCase.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
for (FormatAction e : EnumSet.allOf(FormatAction.class))
for (FormatAction e : FormatAction.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
for (FormatResolve e : EnumSet.allOf(FormatResolve.class))
for (FormatResolve e : FormatResolve.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
for (FormatUnresolved e : EnumSet.allOf(FormatUnresolved.class))
for (FormatUnresolved e : FormatUnresolved.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
for (FormatErrors e : EnumSet.allOf(FormatErrors.class))
for (FormatErrors e : FormatErrors.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
for (FormatWhen e : EnumSet.allOf(FormatWhen.class))
for (FormatWhen e : FormatWhen.all)
selectorMap.put(e.name().toLowerCase(Locale.US), e);
}