Skip to content
Snippets Groups Projects
Commit a7b817d8 authored by brinn's avatar brinn
Browse files

fix: CheckStyle warning

SVN: 6779
parent 716b4738
No related branches found
No related tags found
No related merge requests found
......@@ -400,7 +400,7 @@ public final class PropertyUtils
{
assert properties != null : "Unspecified properties";
for (final Enumeration<String> enumeration =
(Enumeration<String>) properties.propertyNames(); enumeration.hasMoreElements();)
(Enumeration<String>) properties.propertyNames(); enumeration.hasMoreElements(); )
{
final String key = enumeration.nextElement();
properties.setProperty(key, StringUtils.trim(properties.getProperty(key)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment