-
Notifications
You must be signed in to change notification settings - Fork 304
Post release fixes #44
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
dd0bb04
Fix checkstyle: remove tabs
aherbert d73e344
Fix checkstyle: Split long line
aherbert aaef154
Fix checkstyle: exclude pom.properties
aherbert 084333f
Update findbugs to allow deliberate fall-through
aherbert 74ce045
Fix pmd: Remove ternary operator returning false
aherbert 4a9a91e
Fix pmd: Remove implicit final
aherbert db610b3
Fix pmd: Ignore TooManyStaticImports.
aherbert 69a9b7d
Add tests to cover use of the IOUtils class.
aherbert 53b8e39
Clean-up findbugs exclude filter.
aherbert 5472126
Removed unused import
aherbert 9108a3b
Updated test comments for print tests targeting IOUtils.
aherbert e9e98f0
Fix checkstyle: Suppress line length warning in CSVParser.
aherbert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix checkstyle: exclude pom.properties
- Loading branch information
commit aaef15424be22564f213d3634e793c118b296f0b
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should this also be in commons-parent?
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.
AFAICS there is no checkstyle configuration in commons-parent, or PMD. I thought it was just up to projects to configure as appropriate. Using the maven plugin property
checkstyle.resourceExcludesis not done on other commons projects I know. These use a<configuration>section and<resourceExcludes>tag. There is more than one way to skin a cat.Are you suggesting to add profiles like those for other optional plugins such as jacoco? Each project is of a different age and coding style. So a standard checkstyle probably would not work as is and a transition period to a common style would be needed. A common style would certainly make browsing source from different projects easier. I'd say the discussion on this is outside the scope of this PR.
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.
Agreed.