https://github.com/apache/commons-lang

sort by:
Revision Author Date Message Commit Date
5fe2d86 Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@922909 13f79535-47bb-0310-9956-ffa450edef68 14 March 2010, 17:37:07 UTC
5b7817c Fix defaultIsEmpty typing. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@922904 13f79535-47bb-0310-9956-ffa450edef68 14 March 2010, 17:33:23 UTC
1ced894 https://issues.apache.org/jira/browse/LANG-607 StringUtils.containsAny methods incorrectly matches Unicode 2.0+ supplementary characters. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@922703 13f79535-47bb-0310-9956-ffa450edef68 14 March 2010, 00:54:03 UTC
8a8859c Makes sure "..." is the same all over this method. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@922448 13f79535-47bb-0310-9956-ffa450edef68 12 March 2010, 22:59:21 UTC
655050f Use INDEX_NOT_FOUND instead of magic number. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920546 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 22:22:31 UTC
7f23ec3 ContextedRuntimeException must extend RuntimeException (LANG-602). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920544 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 22:20:12 UTC
7cfa8a9 Change StringUtils arguments from String to CharSequence. Details: Working with (trunk) StringUtils (SU) I see the following emerge: - In SVN already and continuing: Change StringUtils arguments from String to CharSequence (CS). - This leads to replacing calls to String.substring(int[,int]) with calls to CharSequence.subSequence(int) - This leads to creating a CharSequenceUtils class (in SVN now, more on this new class below) and CharSequenceUtils.subSequence(CharSequence,int) to avoid changing "str.substring(start)" over and over to "str.subSequence(start, str.length())". For examples, see new versions of capitalize and uncapitalize. - We end up using a toString() on CharSequence to return a String from StringUtil when working with a CharSequence. So we have StringUtils using CharSequence inputs as much as possible instead of String, which is nice. The CharSequence method subSequence returns a CharSequence; though the Javadoc states "Returns a new CharSequence that is a subsequence of this sequence.", this does not guaranteed the return value to be the same kind of CharSequence as the receiver). Since we are after all in a class called StringUtil, calling toString() is a must. I propose that we create when possible the methods that are now StringUtils CharSequence methods into CharSequenceUtils and let StringUtil call CharSequenceUtils and then do its toString() and other String specific logic. Later we could have other CharSequence type of utils (for CharBuffer, StringBuiler, StringBuffer, etc) that use the 'primitives' from CharSequenceUtils. This means that for methods that are based solely on methods that are now in CharSequence, these can be moved to CharSequenceUtils without effort (all is* methods only call CharSequence#length() and charAt() for example and are now typed as CS, still in SU). We can leave @deprecateds method in SU as a nicety to avoid too much porting pain: First change the package to lang3 then you can 'optimize' by changing call sites from SU to CSU. As a start, I put in SVN a CharSequenceUtils (CSU) implementation for length() and subSequence(). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920543 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 22:15:08 UTC
9c03798 Convert defaultIfEmpty from String to CharSequence. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920187 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 03:41:49 UTC
e1077c0 Re-generate the download pages using the new commons-build-plugin .12 (via commons-parent version 13) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920156 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 00:11:50 UTC
0195cd6 Upgrade to version 13 of commons-parent git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@920154 13f79535-47bb-0310-9956-ffa450edef68 08 March 2010, 00:05:47 UTC
9abfbae More tests for length() git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@919872 13f79535-47bb-0310-9956-ffa450edef68 06 March 2010, 22:54:34 UTC
543f2d3 Change length(String) to length(CharSequence) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@919859 13f79535-47bb-0310-9956-ffa450edef68 06 March 2010, 22:09:37 UTC
f91a7c9 Per David M. Sledge's patch to LANG-599, added support to ClassUtils.getClass(String) to support inner classes being separated by '.' as well as the official '$' git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@919340 13f79535-47bb-0310-9956-ffa450edef68 05 March 2010, 09:05:47 UTC
51df5ea Closing the paragraph tag on the ThreadSafe notation. LANG-370 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918868 13f79535-47bb-0310-9956-ffa450edef68 04 March 2010, 06:22:16 UTC
18e7603 Fix threadsafety comments git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918836 13f79535-47bb-0310-9956-ffa450edef68 04 March 2010, 03:12:36 UTC
26cdd7b Iterator is not threadsafe Make private field final git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918829 13f79535-47bb-0310-9956-ffa450edef68 04 March 2010, 02:57:03 UTC
c84c466 Some more #ThreadSafe# tags per LANG-370 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918373 13f79535-47bb-0310-9956-ffa450edef68 03 March 2010, 09:22:46 UTC
bb0d189 Adding ThreadSafe notes to some obviously threadsafe classes (LANG-370) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918369 13f79535-47bb-0310-9956-ffa450edef68 03 March 2010, 09:16:38 UTC
36a2964 Fixing javadoc @see tags git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918368 13f79535-47bb-0310-9956-ffa450edef68 03 March 2010, 09:09:14 UTC
45488c9 Adding info on the LANG-559 commits git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918367 13f79535-47bb-0310-9956-ffa450edef68 03 March 2010, 08:58:10 UTC
4f31ae7 Applying Valentin Rocher's patch from LANG-559, adding isInstanceOf and isAssignableFrom methods. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918366 13f79535-47bb-0310-9956-ffa450edef68 03 March 2010, 08:56:22 UTC
6699e44 Javadoc fixes git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918240 13f79535-47bb-0310-9956-ffa450edef68 02 March 2010, 23:01:54 UTC
52baa80 Unused import; missing @Override markers git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918239 13f79535-47bb-0310-9956-ffa450edef68 02 March 2010, 23:01:40 UTC
8e4147b Fix raw types git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918238 13f79535-47bb-0310-9956-ffa450edef68 02 March 2010, 22:55:22 UTC
1127208 Tab police Also removed extraneous trailing spaces git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@918237 13f79535-47bb-0310-9956-ffa450edef68 02 March 2010, 22:52:09 UTC
b72207c Updating package.html files (LANG-490). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@917897 13f79535-47bb-0310-9956-ffa450edef68 02 March 2010, 06:58:04 UTC
7721acd LANG-594: Add truncatedEquals and truncatedCompareTo git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916906 13f79535-47bb-0310-9956-ffa450edef68 27 February 2010, 03:29:43 UTC
e49c05b 2.5 changes report should show LANG-348 instead of LANG-438 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916449 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 20:51:17 UTC
13692fd Add Lang 2.5 release git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916242 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 10:54:19 UTC
90f45b4 Adding toString test. LANG-588 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916099 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 03:11:48 UTC
88d4405 Applying Matt's patch with my modifications from LANG-588. Adds a Pair class to Lang. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916098 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 03:04:19 UTC
e0ddfa7 Adding BasicThreadFactory class. Same as Oliver's original patch in LANG-582, with an @since 3.0 added git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916095 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 02:53:04 UTC
cf74865 Update site for 2.5 release git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916082 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 01:29:36 UTC
43fca0d Port @since tags from 2.x branch git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@916081 13f79535-47bb-0310-9956-ffa450edef68 25 February 2010, 01:28:13 UTC
8c16b39 Minor javadoc changes git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@915111 13f79535-47bb-0310-9956-ffa450edef68 22 February 2010, 23:25:21 UTC
1fdcb82 Minor code simplification git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@915110 13f79535-47bb-0310-9956-ffa450edef68 22 February 2010, 23:22:18 UTC
3afb07e Remove Maven1 XML documents git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@911992 13f79535-47bb-0310-9956-ffa450edef68 19 February 2010, 21:31:32 UTC
6aca4b6 Checkstyle changes only git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@911987 13f79535-47bb-0310-9956-ffa450edef68 19 February 2010, 21:27:31 UTC
7b6ab58 Add methods for Cloneables to ObjectUtils (LANG-576). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@908745 13f79535-47bb-0310-9956-ffa450edef68 10 February 2010, 23:22:05 UTC
7a304cf Javadoc clarification git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907630 13f79535-47bb-0310-9956-ffa450edef68 08 February 2010, 12:22:32 UTC
1b5c1b4 Adding extra javadoc to point out that usually indexOf on an empty String == -1. LANG-589 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907561 13f79535-47bb-0310-9956-ffa450edef68 08 February 2010, 06:57:34 UTC
10cc16f Moving the indexOf(String, String, int) method above the ordinalIndexOf methods to put it with its overloaded peers. LANG-590 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907385 13f79535-47bb-0310-9956-ffa450edef68 07 February 2010, 07:10:14 UTC
ab759f7 Removing JDK 1.2/1.3 protecting bugfix. We're now on JDK 1.5. LANG-590 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907384 13f79535-47bb-0310-9956-ffa450edef68 07 February 2010, 07:08:58 UTC
779828c Applying Valentin Rocher's patch to LANG-579, adding new regexp and in range methods to Validate git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907382 13f79535-47bb-0310-9956-ffa450edef68 07 February 2010, 05:40:10 UTC
76660f4 reread ThreadLocal value in synchronized block to avoid any timing issues git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907375 13f79535-47bb-0310-9956-ffa450edef68 07 February 2010, 03:42:08 UTC
1f35e7c [LANG-586] Clear ThreadLocal for HashCodeBuilder as well git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907373 13f79535-47bb-0310-9956-ffa450edef68 07 February 2010, 03:14:09 UTC
2fb9e71 promote uniformity between branches by using registry accessor git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907126 13f79535-47bb-0310-9956-ffa450edef68 05 February 2010, 23:11:43 UTC
8f675dd [LANG-587] avoid NPE in ClassUtils.toClass(Object[]) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907102 13f79535-47bb-0310-9956-ffa450edef68 05 February 2010, 21:31:38 UTC
5d5a31a clean up toClass(Object[]) test git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@907099 13f79535-47bb-0310-9956-ffa450edef68 05 February 2010, 21:22:29 UTC
0d828cd unused imports + uh, why would you synchronize access to a ThreadLocal? :P git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@906682 13f79535-47bb-0310-9956-ffa450edef68 04 February 2010, 22:10:24 UTC
a2bb711 [LANG-586] part 2: refactor ToStringStyle and ToStringBuilderTest to verify that we are unsetting the registry when no longer needed git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@906676 13f79535-47bb-0310-9956-ffa450edef68 04 February 2010, 21:57:58 UTC
5c3ec55 [LANG-586] clear ThreadLocal recursion registry (compatibly with existing tests, first pass) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@906673 13f79535-47bb-0310-9956-ffa450edef68 04 February 2010, 21:46:22 UTC
c98d084 LANG-454 implement Iterable<Character> and some javadoc changes git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@906028 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 12:22:27 UTC
63ad5b0 LANG-585. Don't suggest catching Throwable, catch Exception instead. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@906015 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 11:40:06 UTC
6b4cb16 Adding nullToEmpty methods to ArrayUtils per LANG-534 and Levon Karayan's patch. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905925 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 07:53:47 UTC
6c53b13 Fixing LANG-585. Don't catch Throwable, catch Exception instead. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905922 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 07:38:17 UTC
23f5080 Adding Vincent Ricard's patch to CharRange.java providing an iterator that lets you walk the chars in the range. LANG-454 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905919 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 07:31:10 UTC
643302a Applying Chandrashekar M's patch to LANG-583, adding isNotEmpty(array) methods to ArrayUtils. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905917 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 07:20:40 UTC
23f3b90 Reorganize site to standard m2 layout (now there is no longer an m1 build) - move/rename xdocs directory to site/xdoc - remove xdocs/images and xdocs/style directories - move xdocs/changes.xml to site/changes/changes.xml - correct changes.xml location in pom.xml - remove xdocs directory from assembly/src.xml - remove redundant conf directory git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905854 13f79535-47bb-0310-9956-ffa450edef68 03 February 2010, 00:55:08 UTC
9dbe765 generics git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905803 13f79535-47bb-0310-9956-ffa450edef68 02 February 2010, 21:23:25 UTC
b92a2b5 remove pre Java 5 workaround git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905786 13f79535-47bb-0310-9956-ffa450edef68 02 February 2010, 20:39:36 UTC
240b7a9 default autoboxing for Class[] depending on RT Java version + more tests git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905766 13f79535-47bb-0310-9956-ffa450edef68 02 February 2010, 20:07:27 UTC
485dd97 Correct comment and test name: LANG-520 => LANG-530 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905726 13f79535-47bb-0310-9956-ffa450edef68 02 February 2010, 17:42:15 UTC
b9a702b default autoboxing depending on RT Java version git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905690 13f79535-47bb-0310-9956-ffa450edef68 02 February 2010, 16:22:46 UTC
6a613ff Remove my author tags git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905268 13f79535-47bb-0310-9956-ffa450edef68 01 February 2010, 12:01:04 UTC
381cb09 Javadoc git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@905267 13f79535-47bb-0310-9956-ffa450edef68 01 February 2010, 12:00:11 UTC
1c5b51d Removed comment on being able to add cause methods. This was removed from the API as noted in LANG-584 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@904562 13f79535-47bb-0310-9956-ffa450edef68 29 January 2010, 17:12:02 UTC
8ea4582 Fixed a test case that does not work on non-English locales. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@903421 13f79535-47bb-0310-9956-ffa450edef68 26 January 2010, 21:19:07 UTC
f624a86 Explicit boxing git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902960 13f79535-47bb-0310-9956-ffa450edef68 25 January 2010, 19:47:41 UTC
a28d94e Explicit boxing git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902958 13f79535-47bb-0310-9956-ffa450edef68 25 January 2010, 19:44:41 UTC
c92f2bc Simplify code (eliminate conditional check) and avoid NPE warning git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902955 13f79535-47bb-0310-9956-ffa450edef68 25 January 2010, 19:40:38 UTC
a6c13a1 Javadoc correction git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902948 13f79535-47bb-0310-9956-ffa450edef68 25 January 2010, 19:32:33 UTC
d0b2568 Fix raw types git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902944 13f79535-47bb-0310-9956-ffa450edef68 25 January 2010, 19:32:08 UTC
99d54a9 Checkstyle git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902054 13f79535-47bb-0310-9956-ffa450edef68 22 January 2010, 10:57:25 UTC
e5618bc Javadoc updates only git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@902053 13f79535-47bb-0310-9956-ffa450edef68 22 January 2010, 10:52:07 UTC
91e2b60 Javadoc correction: truncation -> abbreviation git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@901817 13f79535-47bb-0310-9956-ffa450edef68 21 January 2010, 18:27:09 UTC
9143987 LANG-405 rename method from truncateMiddle() to abbreviateMiddle() git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@901815 13f79535-47bb-0310-9956-ffa450edef68 21 January 2010, 18:22:15 UTC
d918999 Replace tab characters with spaces git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@901804 13f79535-47bb-0310-9956-ffa450edef68 21 January 2010, 17:59:51 UTC
4240de5 Applying Srihari Reddy's patch from LANG-405, based on Dave Meikle's original patch. This adds a truncateMiddle method to StringUtils. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@901595 13f79535-47bb-0310-9956-ffa450edef68 21 January 2010, 08:38:12 UTC
6913747 Modifying toString method to cache in a thread-safe way per LANG-481 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@900015 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 19:50:33 UTC
0106790 LANG-571 ArrayUtils.add(T[] array[, offset], T element) can create unexpected ClassCastException Remove tests for generation of Object arrays when both objects are null git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899940 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 13:05:07 UTC
13bdd20 Unused imports Suppress deprecation warnings for tests of deprecated methods git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899938 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 13:00:07 UTC
78792f3 Unused imports git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899936 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 12:59:21 UTC
b777356 LANG-564 Improve StrLookup API documentation git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899933 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 12:53:54 UTC
54c0f6b LANG-571 ArrayUtils.add(T[] array[, offset], T element) can create unexpected ClassCastException git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899929 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 12:39:20 UTC
a5dc7f1 Adding hashCode caching in line with LANG-481 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899897 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 08:04:40 UTC
8860c37 Adding String lazy caching git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899895 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 07:58:11 UTC
5be7671 Adding javadoc note on immutable git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899893 13f79535-47bb-0310-9956-ffa450edef68 16 January 2010, 07:48:16 UTC
1da401f FIx Javadoc error git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899264 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 16:08:20 UTC
ab20f86 Fix paste typos git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899260 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 16:03:56 UTC
b88699d Another case-insensitive test git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899245 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 15:40:03 UTC
491a1d6 LANG-581 - Javadoc bug in org.apache.commons.lang.StringUtils.removeEndIgnoreCase() Add some case-insensitive examples git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899242 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 15:37:42 UTC
a7b7e11 Fix JUnit message to agree with test git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899239 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 15:31:13 UTC
9a5da72 LANG-581 - Javadoc bug in org.apache.commons.lang.StringUtils.removeEndIgnoreCase() git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@899231 13f79535-47bb-0310-9956-ffa450edef68 14 January 2010, 15:12:47 UTC
86e893c Removing unnecessary <p> and Class variable git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897533 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 20:23:13 UTC
5494a87 Replacing the creation of a List in the core of each Builder class to test contains on the excludeFields with a call to ArrayUtils.contains. Reported by Anthony Whitford in LANG-575 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897421 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 11:44:06 UTC
8d518b7 Performance improvement per Anthony Whitford in LANG-574. Check for isArray to short-circuit the 9 instanceof checks. Improves both non-arrays and Object[] in tests git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897419 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 11:20:49 UTC
72e4ab4 Synchronizing the COMMON Map so that getInstance doesn't miss a put from a subclass in another thread. LANG-494 git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897408 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 10:06:42 UTC
2493294 Removing unused imports git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897406 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 10:02:59 UTC
069d15e Removing unused WordUtils import git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@897404 13f79535-47bb-0310-9956-ffa450edef68 09 January 2010, 10:02:25 UTC
back to top