Remove trailing white spaces on all lines.
This commit is contained in:
parent
465e6becd8
commit
5509c425b4
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue