Remove trailing white spaces on all lines.

This commit is contained in:
Gary Gregory 2019-06-04 08:26:47 -04:00
parent 465e6becd8
commit 5509c425b4
3 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ import java.nio.charset.UnsupportedCharsetException;
* Package private since Apache Commons IO already provides a Charsets because {@link Charset} is in
* {@code java.nio.charset}.
* </p>
*
*
* @since 3.10
*/
class Charsets {

View File

@ -28,8 +28,8 @@ import org.apache.commons.lang3.Validate;
* <p> Utility reflection methods focused on constructors, modeled after
* {@link MethodUtils}. </p>
*
* <h2>Known Limitations</h2>
* <h3>Accessing Public Constructors In A Default Access Superclass</h3>
* <h2>Known Limitations</h2>
* <h3>Accessing Public Constructors In A Default Access Superclass</h3>
* <p>There is an issue when invoking {@code public} constructors
* contained in a default access superclass. Reflection correctly locates these
* constructors and assigns them as {@code public}. However, an

View File

@ -3146,7 +3146,7 @@ public class StringUtilsTest {
assertEquals("'\"abcd\"'", StringUtils.wrap("\"abcd\"", "'"));
assertEquals("\"'abcd'\"", StringUtils.wrap("'abcd'", "\""));
}
@Test
public void testWrapIfMissing_StringChar() {
assertNull(StringUtils.wrapIfMissing(null, CharUtils.NUL));