GitHub user ingvarc opened a pull request:
https://github.com/apache/commons-lang/pull/334
Code refactoring and cleaning
- **removes unchecked exceptions declared in 'throws' clause**;
Effective Java: "Use the Javadoc @throws tag to document each exception
that a method
can throw, but do not use the throws keyword on unchecked exceptions." (3e,
item 74).
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/ingvarc/commons-lang master
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/commons-lang/pull/334.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #334
----
commit e767af7e7eb8ff7724d5f72709ee4bb7a72d2284
Author: Igor Curdvanovschi <ingvar.nix@...>
Date: 2018-06-20T06:00:24Z
removes unchecked exceptions declared in 'throws' clause
----
---