Remove trailing whitespaces

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1582973 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-03-29 10:28:40 +00:00
parent 7b263d7f49
commit 3cdb486869
3 changed files with 20 additions and 20 deletions

View File

@ -5,9 +5,9 @@
# The ASF licenses this file to You under the Apache License, Version 2.0 # The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with # (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at # the License. You may obtain a copy of the License at
# #
# http://www.apache.org/licenses/LICENSE-2.0 # http://www.apache.org/licenses/LICENSE-2.0
# #
# Unless required by applicable law or agreed to in writing, software # Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, # distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -68,16 +68,16 @@ compile.deprecation = true
# Should Java compilations set the 'optimize' compiler option? # Should Java compilations set the 'optimize' compiler option?
compile.optimize = true compile.optimize = true
# Generate class files for specific VM version (e.g., 1.1 or 1.2). # Generate class files for specific VM version (e.g., 1.1 or 1.2).
# Note that the default value depends on the JVM that is running Ant. # Note that the default value depends on the JVM that is running Ant.
# In particular, if you use JDK 1.4+ the generated classes will not be usable # In particular, if you use JDK 1.4+ the generated classes will not be usable
# for a 1.1 Java VM unless you explicitly set this attribute to the value 1.1 # for a 1.1 Java VM unless you explicitly set this attribute to the value 1.1
# (which is the default value for JDK 1.1 to 1.3). # (which is the default value for JDK 1.1 to 1.3).
compile.target = 1.6 compile.target = 1.6
# Specifies the source version for the Java compiler. # Specifies the source version for the Java compiler.
# Corresponds to the source attribute for the ant javac task. # Corresponds to the source attribute for the ant javac task.
# Valid values are 1.3, 1.4, 1.5. # Valid values are 1.3, 1.4, 1.5.
compile.source = 1.6 compile.source = 1.6
# Specifies the source encoding. # Specifies the source encoding.

10
pom.xml
View File

@ -181,7 +181,7 @@
<roles> <roles>
<role>Java Developer</role> <role>Java Developer</role>
</roles> </roles>
</developer> </developer>
</developers> </developers>
<contributors> <contributors>
<contributor> <contributor>
@ -499,9 +499,9 @@
<!-- <!--
This is also used to generate download_xxx file name. This is also used to generate download_xxx file name.
To override this when generating the download page: To override this when generating the download page:
mvn commons:download-page -Dcommons.componentid=lang mvn commons:download-page -Dcommons.componentid=lang
The above seems to change the download page name but not any other The above seems to change the download page name but not any other
properties that depend on the componentid. properties that depend on the componentid.
--> -->
@ -538,8 +538,8 @@
<runOrder>random</runOrder> <runOrder>random</runOrder>
</configuration> </configuration>
</execution> </execution>
<!-- <execution> <id>security-manager-test</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration> <!-- <execution> <id>security-manager-test</id> <phase>integration-test</phase> <goals> <goal>test</goal> </goals> <configuration>
<includes> <include>**/*Test.java</include> </includes> <argLine>-Djava.security.manager -Djava.security.policy=${basedir}/src/test/resources/java.policy</argLine> <includes> <include>**/*Test.java</include> </includes> <argLine>-Djava.security.manager -Djava.security.policy=${basedir}/src/test/resources/java.policy</argLine>
</configuration> </execution> --> </configuration> </execution> -->
</executions> </executions>
</plugin> </plugin>

View File

@ -33,7 +33,7 @@
<action issue="LANG-982" type="fix" dev="sebb">DurationFormatUtils.formatDuration(61999, "s.SSSS") - ms field size should be 4 digits</action> <action issue="LANG-982" type="fix" dev="sebb">DurationFormatUtils.formatDuration(61999, "s.SSSS") - ms field size should be 4 digits</action>
<action issue="LANG-978" type="fix" dev="sebb">Failing tests with Java 8 b128</action> <action issue="LANG-978" type="fix" dev="sebb">Failing tests with Java 8 b128</action>
</release> </release>
<release version="3.3" date="2014-03-04" description="Bug fixes and and new features including: DifferenceBuilder, ClassPathUtils, RandomUtils and Jaro-Winkler String distance metric"> <release version="3.3" date="2014-03-04" description="Bug fixes and and new features including: DifferenceBuilder, ClassPathUtils, RandomUtils and Jaro-Winkler String distance metric">
<action issue="LANG-621" type="fix" dev="kinow" due-to="Philip Hodges, Thomas Neidhart">ReflectionToStringBuilder.toString does not debug 3rd party object fields within 3rd party object</action> <action issue="LANG-621" type="fix" dev="kinow" due-to="Philip Hodges, Thomas Neidhart">ReflectionToStringBuilder.toString does not debug 3rd party object fields within 3rd party object</action>
<action issue="LANG-955" type="add" dev="britter" due-to="Adam Hooper">Add methods for removing all invalid characters according to XML 1.0 and XML 1.1 in an input string to StringEscapeUtils</action> <action issue="LANG-955" type="add" dev="britter" due-to="Adam Hooper">Add methods for removing all invalid characters according to XML 1.0 and XML 1.1 in an input string to StringEscapeUtils</action>
@ -102,7 +102,7 @@
<action issue="LANG-887" type="fix">FastDateFormat does not use the locale specific cache correctly</action> <action issue="LANG-887" type="fix">FastDateFormat does not use the locale specific cache correctly</action>
<action issue="LANG-884" type="update">Simplify FastDateFormat; eliminate boxing</action> <action issue="LANG-884" type="update">Simplify FastDateFormat; eliminate boxing</action>
<action issue="LANG-882" type="update">LookupTranslator now works with implementations of CharSequence other than String</action> <action issue="LANG-882" type="update">LookupTranslator now works with implementations of CharSequence other than String</action>
<action issue="LANG-754" type="fix">ClassUtils.getShortName(String) will now only do a reverse lookup for array types</action> <action issue="LANG-754" type="fix">ClassUtils.getShortName(String) will now only do a reverse lookup for array types</action>
<action issue="LANG-886" type="add">Added CharSetUtils.containsAny(String, String)</action> <action issue="LANG-886" type="add">Added CharSetUtils.containsAny(String, String)</action>
<action issue="LANG-846" type="update">Provide CharSequenceUtils.regionMatches with a proper green implementation instead of inefficiently converting to Strings</action> <action issue="LANG-846" type="update">Provide CharSequenceUtils.regionMatches with a proper green implementation instead of inefficiently converting to Strings</action>
<action issue="LANG-797" type="add">Added escape/unescapeJson to StringEscapeUtils</action> <action issue="LANG-797" type="add">Added escape/unescapeJson to StringEscapeUtils</action>
@ -122,7 +122,7 @@
<action issue="LANG-849" type="fix">FastDateFormat and FastDatePrinter generates Date objects wastefully</action> <action issue="LANG-849" type="fix">FastDateFormat and FastDatePrinter generates Date objects wastefully</action>
<action issue="LANG-845" type="fix">Spelling fixes</action> <action issue="LANG-845" type="fix">Spelling fixes</action>
<action issue="LANG-844" type="fix">Fix examples contained in javadoc of StringUtils.center methods</action> <action issue="LANG-844" type="fix">Fix examples contained in javadoc of StringUtils.center methods</action>
<action issue="LANG-841" type="add">Add StringUtils API to call String.replaceAll in DOTALL a.k.a. single-line mode</action> <action issue="LANG-841" type="add">Add StringUtils API to call String.replaceAll in DOTALL a.k.a. single-line mode</action>
<action issue="LANG-839" type="update">ArrayUtils removeElements methods use unnecessary HashSet</action> <action issue="LANG-839" type="update">ArrayUtils removeElements methods use unnecessary HashSet</action>
<action issue="LANG-838" type="update">ArrayUtils removeElements methods clone temporary index arrays unnecessarily</action> <action issue="LANG-838" type="update">ArrayUtils removeElements methods clone temporary index arrays unnecessarily</action>
<action issue="LANG-832" type="fix">FastDateParser does not handle unterminated quotes correctly</action> <action issue="LANG-832" type="fix">FastDateParser does not handle unterminated quotes correctly</action>
@ -140,8 +140,8 @@
<action issue="LANG-805" type="fix">RandomStringUtils.random(count, 0, 0, false, false, universe, random) always throws java.lang.ArrayIndexOutOfBoundsException</action> <action issue="LANG-805" type="fix">RandomStringUtils.random(count, 0, 0, false, false, universe, random) always throws java.lang.ArrayIndexOutOfBoundsException</action>
<action issue="LANG-802" type="fix">LocaleUtils - unnecessary recursive call in SyncAvoid class.</action> <action issue="LANG-802" type="fix">LocaleUtils - unnecessary recursive call in SyncAvoid class.</action>
<action issue="LANG-800" type="fix">Javadoc bug in DateUtils#ceiling for Calendar and Object versions.</action> <action issue="LANG-800" type="fix">Javadoc bug in DateUtils#ceiling for Calendar and Object versions.</action>
<action issue="LANG-799" type="update">DateUtils#parseDate uses default locale; add Locale support</action> <action issue="LANG-799" type="update">DateUtils#parseDate uses default locale; add Locale support</action>
<action issue="LANG-798" type="update">Use generics in SerializationUtils</action> <action issue="LANG-798" type="update">Use generics in SerializationUtils</action>
<action issue="LANG-788" type="fix">SerializationUtils throws ClassNotFoundException when cloning primitive classes</action> <action issue="LANG-788" type="fix">SerializationUtils throws ClassNotFoundException when cloning primitive classes</action>
<action issue="LANG-786" type="fix">StringUtils equals() relies on undefined behavior</action> <action issue="LANG-786" type="fix">StringUtils equals() relies on undefined behavior</action>
<action issue="LANG-783" type="fix">Documentation bug: StringUtils.split</action> <action issue="LANG-783" type="fix">Documentation bug: StringUtils.split</action>
@ -159,7 +159,7 @@
<action issue="LANG-462" type="add">FastDateFormat supports parse methods</action> <action issue="LANG-462" type="add">FastDateFormat supports parse methods</action>
</release> </release>
<release version="3.1" date="2011-11-14" description="November release"> <release version="3.1" date="2011-11-14" description="November release">
<action type="add" issue="LANG-760">Add API StringUtils.toString(byte[] intput, String charsetName)</action> <action type="add" issue="LANG-760">Add API StringUtils.toString(byte[] intput, String charsetName)</action>
<action type="update" issue="LANG-758">Add an example with whitespace in StringUtils.defaultIfEmpty</action> <action type="update" issue="LANG-758">Add an example with whitespace in StringUtils.defaultIfEmpty</action>
<action type="add" issue="LANG-756">Add APIs ClassUtils.isPrimitiveWrapper(Class&lt;?&gt;) and isPrimitiveOrWrapper(Class&lt;?&gt;)</action> <action type="add" issue="LANG-756">Add APIs ClassUtils.isPrimitiveWrapper(Class&lt;?&gt;) and isPrimitiveOrWrapper(Class&lt;?&gt;)</action>
@ -175,7 +175,7 @@
<action type="add" issue="LANG-695">SystemUtils.IS_OS_UNIX doesn't recognize FreeBSD as a Unix system</action> <action type="add" issue="LANG-695">SystemUtils.IS_OS_UNIX doesn't recognize FreeBSD as a Unix system</action>
</release> </release>
<release version="3.0.1" date="2011-08-09" description="August release"> <release version="3.0.1" date="2011-08-09" description="August release">
<action type="fix" issue="LANG-626">SerializationUtils.clone: Fallback to context classloader if class not found in current classloader.</action> <action type="fix" issue="LANG-626">SerializationUtils.clone: Fallback to context classloader if class not found in current classloader.</action>
<action type="fix" issue="LANG-727">ToStringBuilderTest.testReflectionHierarchyArrayList fails with IBM JDK 6.</action> <action type="fix" issue="LANG-727">ToStringBuilderTest.testReflectionHierarchyArrayList fails with IBM JDK 6.</action>
<action type="fix" issue="LANG-720">StringEscapeUtils.escapeXml(input) wrong when input contains characters in Supplementary Planes.</action> <action type="fix" issue="LANG-720">StringEscapeUtils.escapeXml(input) wrong when input contains characters in Supplementary Planes.</action>
@ -193,7 +193,7 @@
<action type="fix" issue="LANG-738">Use internal Java's Number caches instead creating new objects.</action> <action type="fix" issue="LANG-738">Use internal Java's Number caches instead creating new objects.</action>
</release> </release>
<release version="3.0" date="2011-07-18" description="Backwards incompatible update of Commons Lang to Java 5"> <release version="3.0" date="2011-07-18" description="Backwards incompatible update of Commons Lang to Java 5">
<action type="fix" issue="LANG-720">StringEscapeUtils.escapeXml(input) outputs wrong results when an input contains characters in Supplementary Planes.</action> <action type="fix" issue="LANG-720">StringEscapeUtils.escapeXml(input) outputs wrong results when an input contains characters in Supplementary Planes.</action>
<action type="update" issue="LANG-718">build.xml Java 1.5+ updates.</action> <action type="update" issue="LANG-718">build.xml Java 1.5+ updates.</action>
<action type="fix" issue="LANG-716">swapCase and *capitalize speedups.</action> <action type="fix" issue="LANG-716">swapCase and *capitalize speedups.</action>