-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Small cleanup #730
Small cleanup #730
Conversation
@@ -29,7 +29,7 @@ | |||
public class CookieParamValueResolverTest { | |||
private static final String SOME_VALUE = "llamas"; | |||
|
|||
private CookieParamValueResolver resolver = new CookieParamValueResolver(); | |||
private final CookieParamValueResolver resolver = new CookieParamValueResolver(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We never made anything final beside constants in Test classes, but whatever. That's funny
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you prefer that I remove it? IntelliJ was telling me that it could be final. ;-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't bother. I just actually don't care whether test fields are final or not, but might as well keep it now ;)
@@ -4,4 +4,5 @@ | |||
|
|||
<module> | |||
<source path="shared"/> | |||
<source path="client"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Chris-V I guess I should remove that one too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
@Chris-V LGTM? |
LGTM (still remove the other client source path please :) |
No description provided.