Skip to content
Snippets Groups Projects
Commit ca515022 authored by jakubs's avatar jakubs
Browse files

SSDM-1191: remove minor redundancy from the code

SVN: 33359
parent 6b65b26c
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ public class GroupingPolicy extends BaseGroupingPolicy
throw new ConfigurationFailureException("Invalid grouping key in property '" + GROUPING_KEYS_KEY
+ "' because 'merge' is expected after ':': " + groupingKey);
}
merge = splitted.length < 2 ? false : "merge".equals(splitted[1]);
merge = true;
}
String[] keyItems = splitted[0].split("#");
List<IGroupKeyProvider> groupings = new ArrayList<IGroupKeyProvider>();
......
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