SethFalco opened a new pull request #91:
URL: https://github.com/apache/commons-beanutils/pull/91
Would it be fine to refactor or reformat parts of the repository?
I'd like to contribute more, but I thought it could be nice to clean things
up a bit, especially the unit tests.
This PR removes 3,000+ redundant lines, as they were a bit annoying while
browsing the repo. ^-^'
* Removes trailing white space characters.
* Removes redundant line breaks.
* Fixes indentation of certain functions that used 2 spaces instead of 4.
### Examples
#### Multiple Line Breaks
```java
public void functionA() {
}
public void functionB() {
}
```
#### Line Break At Start and End of Method
```java
public void myFunction() {
doA();
doB();
}
```
#### Trailing Blank Lines in Docs
```java
/**
* Documentation for the class.
*
*/
public class MyClass {
}
```
#### Next Line Curly Instead of Inline
```java
try {
}
catch (Exception ex) {
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]