Skip to content

Commit 9a048d0

Browse files
committed
Local variable can be private
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@1797639 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2b57074 commit 9a048d0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -641,8 +641,7 @@ public boolean equals(Object o)
641641
return false;
642642
}
643643

644-
Option option = (Option) o;
645-
644+
final Option option = (Option) o;
646645

647646
if (opt != null ? !opt.equals(option.opt) : option.opt != null)
648647
{

0 commit comments

Comments
 (0)