Normalize end of comments
This commit is contained in:
parent
0749749a11
commit
87730a6474
|
@ -507,7 +507,6 @@ public class HashCodeBuilder implements Builder<Integer> {
|
|||
|
||||
/**
|
||||
* Uses two hard coded choices for the constants needed to build a {@code hashCode}.
|
||||
*
|
||||
*/
|
||||
public HashCodeBuilder() {
|
||||
iConstant = 37;
|
||||
|
|
|
@ -686,7 +686,6 @@ public abstract class ToStringStyle implements Serializable {
|
|||
/**
|
||||
* A registry of objects used by {@code reflectionToString} methods
|
||||
* to detect cyclical object references and avoid infinite loops.
|
||||
*
|
||||
*/
|
||||
private static final ThreadLocal<WeakHashMap<Object, Object>> REGISTRY = new ThreadLocal<>();
|
||||
/*
|
||||
|
|
|
@ -100,7 +100,6 @@ public class BasicThreadFactory implements ThreadFactory {
|
|||
* chaining is supported. Refer to the documentation of {@code
|
||||
* BasicThreadFactory} for a usage example.
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
public static class Builder
|
||||
implements org.apache.commons.lang3.builder.Builder<BasicThreadFactory> {
|
||||
|
|
|
@ -765,7 +765,6 @@ public class FastDatePrinter implements DatePrinter, Serializable {
|
|||
|
||||
/**
|
||||
* Constructs an instance of {@link UnpaddedMonthField}.
|
||||
*
|
||||
*/
|
||||
UnpaddedMonthField() {
|
||||
}
|
||||
|
|
|
@ -458,7 +458,6 @@ public class LocaleUtilsTest extends AbstractLangTest {
|
|||
|
||||
/**
|
||||
* Test for 3-chars locale, further details at LANG-915
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void testThreeCharsLocale() {
|
||||
|
|
|
@ -21,7 +21,6 @@ import org.junit.jupiter.api.Test;
|
|||
|
||||
/**
|
||||
* Tests {@link StringUtils}'s valueOf() methods.
|
||||
*
|
||||
*/
|
||||
public class StringUtilsValueOfTest extends AbstractLangTest {
|
||||
|
||||
|
|
|
@ -28,7 +28,6 @@ public class ToStringStyleTest extends AbstractLangTest {
|
|||
|
||||
/**
|
||||
* An object used to test {@link ToStringStyle}.
|
||||
*
|
||||
*/
|
||||
static class Person {
|
||||
/**
|
||||
|
|
|
@ -46,7 +46,6 @@ import org.junit.jupiter.api.Test;
|
|||
|
||||
/**
|
||||
* Tests {@link org.apache.commons.lang3.exception.ExceptionUtils}.
|
||||
*
|
||||
*/
|
||||
public class ExceptionUtilsTest extends AbstractLangTest {
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@ import org.junit.jupiter.api.Test;
|
|||
|
||||
/**
|
||||
* Test case for {@link ExtendedMessageFormat}.
|
||||
*
|
||||
*/
|
||||
@Deprecated
|
||||
public class ExtendedMessageFormatTest extends AbstractLangTest {
|
||||
|
|
|
@ -38,7 +38,6 @@ import org.junit.jupiter.api.Test;
|
|||
* A month with 28 days will be rounded up from the 15th
|
||||
* A month with 29 or 30 days will be rounded up from the 16th
|
||||
* A month with 31 days will be rounded up from the 17th
|
||||
*
|
||||
*/
|
||||
public class DateUtilsRoundingTest extends AbstractLangTest {
|
||||
|
||||
|
@ -620,7 +619,6 @@ public class DateUtilsRoundingTest extends AbstractLangTest {
|
|||
|
||||
/**
|
||||
* Test DateUtils.truncate()-method with Calendar.SECOND
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void testTruncateMilliSecond() {
|
||||
|
|
|
@ -45,7 +45,6 @@ import org.junitpioneer.jupiter.DefaultTimeZone;
|
|||
|
||||
/**
|
||||
* Unit tests {@link org.apache.commons.lang3.time.FastDateFormat}.
|
||||
*
|
||||
*/
|
||||
public class FastDateFormatTest extends AbstractLangTest {
|
||||
private static final int NTHREADS = 10;
|
||||
|
|
|
@ -21,7 +21,6 @@ import java.util.TimeZone;
|
|||
|
||||
/**
|
||||
* Unit tests for the print methods of FastDateFormat
|
||||
*
|
||||
*/
|
||||
public class FastDateFormat_PrinterTest extends FastDatePrinterTest {
|
||||
|
||||
|
|
|
@ -49,7 +49,6 @@ import org.junit.jupiter.params.provider.MethodSource;
|
|||
|
||||
/**
|
||||
* Unit tests {@link org.apache.commons.lang3.time.FastDateParser}.
|
||||
*
|
||||
*/
|
||||
public class FastDateParserTest extends AbstractLangTest {
|
||||
|
||||
|
|
|
@ -38,7 +38,6 @@ import org.junitpioneer.jupiter.DefaultTimeZone;
|
|||
|
||||
/**
|
||||
* Unit tests {@link org.apache.commons.lang3.time.FastDatePrinter}.
|
||||
*
|
||||
*/
|
||||
public class FastDatePrinterTest extends AbstractLangTest {
|
||||
|
||||
|
|
Loading…
Reference in New Issue