Skip to content

Commit e985bf5

Browse files
committed
Make checkstyle happy
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@1685376 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3bd90df commit e985bf5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/org/apache/commons/cli/Options.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,8 @@ public List<String> getMatchingOptions(String opt)
237237
List<String> matchingOpts = new ArrayList<String>();
238238

239239
// for a perfect match return the single option only
240-
if(longOpts.keySet().contains(opt)) {
240+
if (longOpts.keySet().contains(opt))
241+
{
241242
return Collections.singletonList(opt);
242243
}
243244

0 commit comments

Comments
 (0)