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
|
* Package private since Apache Commons IO already provides a Charsets because {@link Charset} is in
|
||||||
* {@code java.nio.charset}.
|
* {@code java.nio.charset}.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @since 3.10
|
* @since 3.10
|
||||||
*/
|
*/
|
||||||
class Charsets {
|
class Charsets {
|
||||||
|
|
|
@ -28,8 +28,8 @@ import org.apache.commons.lang3.Validate;
|
||||||
* <p> Utility reflection methods focused on constructors, modeled after
|
* <p> Utility reflection methods focused on constructors, modeled after
|
||||||
* {@link MethodUtils}. </p>
|
* {@link MethodUtils}. </p>
|
||||||
*
|
*
|
||||||
* <h2>Known Limitations</h2>
|
* <h2>Known Limitations</h2>
|
||||||
* <h3>Accessing Public Constructors In A Default Access Superclass</h3>
|
* <h3>Accessing Public Constructors In A Default Access Superclass</h3>
|
||||||
* <p>There is an issue when invoking {@code public} constructors
|
* <p>There is an issue when invoking {@code public} constructors
|
||||||
* contained in a default access superclass. Reflection correctly locates these
|
* contained in a default access superclass. Reflection correctly locates these
|
||||||
* constructors and assigns them as {@code public}. However, an
|
* 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\"", "'"));
|
||||||
assertEquals("\"'abcd'\"", StringUtils.wrap("'abcd'", "\""));
|
assertEquals("\"'abcd'\"", StringUtils.wrap("'abcd'", "\""));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testWrapIfMissing_StringChar() {
|
public void testWrapIfMissing_StringChar() {
|
||||||
assertNull(StringUtils.wrapIfMissing(null, CharUtils.NUL));
|
assertNull(StringUtils.wrapIfMissing(null, CharUtils.NUL));
|
||||||
|
|
Loading…
Reference in New Issue