Remove trailing whitespace

This commit is contained in:
Gary Gregory 2023-08-11 16:56:02 -04:00
parent 28cc1074b4
commit da7d218b00

View File

@ -282,7 +282,7 @@ private static boolean isFormatLetter(final char c) {
// Accessors
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#getPattern()
*/
@Override
@ -292,7 +292,7 @@ public String getPattern() {
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#getTimeZone()
*/
@Override
@ -302,7 +302,7 @@ public TimeZone getTimeZone() {
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#getLocale()
*/
@Override
@ -374,7 +374,7 @@ private void readObject(final ObjectInputStream in) throws IOException, ClassNot
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#parseObject(String)
*/
@Override
@ -384,7 +384,7 @@ public Object parseObject(final String source) throws ParseException {
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#parse(String)
*/
@Override
@ -404,7 +404,7 @@ public Date parse(final String source) throws ParseException {
/*
* (non-Javadoc)
*
*
* @see org.apache.commons.lang3.time.DateParser#parseObject(String, java.text.ParsePosition)
*/
@Override
@ -486,7 +486,7 @@ private static StringBuilder simpleQuote(final StringBuilder sb, final String va
/**
* Gets the short and long values displayed for a field
*
*
* @param calendar The calendar to obtain the short and long values
* @param locale The locale of display names
* @param field The field of interest
@ -511,7 +511,7 @@ private static Map<String, Integer> appendDisplayNames(final Calendar calendar,
/**
* Adjusts dates to be within appropriate century
*
*
* @param twoDigitYear The year to adjust
* @return A value between centuryStart(inclusive) to centuryStart+100(exclusive)
*/
@ -590,7 +590,7 @@ public String toString() {
/**
* Gets a Strategy given a field from a SimpleDateFormat pattern
*
*
* @param f A sub-sequence of the SimpleDateFormat pattern
* @param width formatting width
* @param definingCalendar The calendar to obtain the short and long values
@ -655,7 +655,7 @@ private Strategy getStrategy(final char f, final int width, final Calendar defin
/**
* Gets a cache of Strategies for a particular field
*
*
* @param field The Calendar field
* @return a cache of Locale to Strategy
*/
@ -670,7 +670,7 @@ private static ConcurrentMap<Locale, Strategy> getCache(final int field) {
/**
* Constructs a Strategy that parses a Text field
*
*
* @param field The Calendar field
* @param definingCalendar The calendar to obtain the short and long values
* @return a TextStrategy for the field and Locale
@ -1008,7 +1008,7 @@ private static class ISO8601TimeZoneStrategy extends PatternStrategy {
/**
* Constructs a Strategy that parses a TimeZone
*
*
* @param pattern The Pattern
*/
ISO8601TimeZoneStrategy(final String pattern) {