Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 20637 invoked from network); 30 Jan 2011 09:10:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 30 Jan 2011 09:10:45 -0000 Received: (qmail 99301 invoked by uid 500); 30 Jan 2011 09:10:45 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 99094 invoked by uid 500); 30 Jan 2011 09:10:43 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 99086 invoked by uid 99); 30 Jan 2011 09:10:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Jan 2011 09:10:42 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Jan 2011 09:10:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D70652388A2C; Sun, 30 Jan 2011 09:10:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1065238 - /commons/proper/lang/trunk/src/site/xdoc/article3_0.xml Date: Sun, 30 Jan 2011 09:10:19 -0000 To: commits@commons.apache.org From: bayard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110130091019.D70652388A2C@eris.apache.org> Author: bayard Date: Sun Jan 30 09:10:19 2011 New Revision: 1065238 URL: http://svn.apache.org/viewvc?rev=1065238&view=rev Log: Minor update Modified: commons/proper/lang/trunk/src/site/xdoc/article3_0.xml Modified: commons/proper/lang/trunk/src/site/xdoc/article3_0.xml URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/site/xdoc/article3_0.xml?rev=1065238&r1=1065237&r2=1065238&view=diff ============================================================================== --- commons/proper/lang/trunk/src/site/xdoc/article3_0.xml (original) +++ commons/proper/lang/trunk/src/site/xdoc/article3_0.xml Sun Jan 30 09:10:19 2011 @@ -54,10 +54,9 @@ Java 5 we are remove this feature. The d we are on Java 6, where the last remaining parts of the JDK appear to have embraced the new cause API.

JVMRandom - This class was introduced in Lang 2.0 to support a Random object built around the system seed. This proved to be both an uncommon use case and one with bugs and so was dropped.

-

StringEscapeUtils.escapeSql - This was a misleading method, only handling the simplest of possible SQL cases. As SQL is not -Lang's focus, it didn't make sense to improve this method.

+

StringEscapeUtils.escapeSql - This was a misleading method, only handling the simplest of possible SQL cases. As SQL is not Lang's focus, it didn't make sense to maintain this method.

Various Exception classes were removed - the lesson in defining more semantically relevant exception classes is that you can keep on coming up with more and more new classes. Simpler to focus on using the main JDK classes.

-

The various Range classes in the math package were removed in favour of a new Range class.

+

The various Range classes in the math package were removed in favour of a new generic Range class.

All deprecated fields/methods/classes - with a new major version, all of the previously deprecated parts of the API could finally go away.

If you feel that something was unfairly taken away, please feel free to contact the list. In many cases the possibility exists to reintroduce code.