-
Couldn't load subscription status.
- Fork 184
Code cleanup #37
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
Code cleanup #37
Conversation
| final boolean result = filter.accept( node , Collections.<Node>emptyList() ); | ||
|
|
||
| assertThat( result, is( false )); | ||
| assertFalse( filter.accept( node , Collections.<Node>emptyList() ) ); |
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.
a bad practice, here again.
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.
Can you be more specific?
| ArgumentCaptor<String> captor = ArgumentCaptor.forClass( String.class ); | ||
| verify( log ).debug( captor.capture() ); | ||
| assertThat( captor.getValue(), containsString( "Skipped dependency" ) ); | ||
| MatcherAssert.assertThat( captor.getValue(), containsString( "Skipped dependency" ) ); |
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.
static import
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.
done
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.
Ping. Any further comments on this one?
* static import
* static import
|
Resolve #1254 |
Remove unused variables and deprecated methods
@khmarbaise