Re: svn commit: r962306 - in /commons/proper/math/trunk/src/main: java/org/apache/commons/math/analysis/interpolation/ java/org/apache/commons/math/exception/ java/org/apache/commons/math/util/ resour

2010-07-10 Thread Phil Steitz
er...@apache.org wrote: Author: erans Date: Thu Jul 8 23:45:06 2010 New Revision: 962306 URL: http://svn.apache.org/viewvc?rev=962306view=rev Log: MATH-361 Please include more detailed log messages with commits. A commit log message should include a summary of the changes made.

Re: svn commit: r962306 - in /commons/proper/math/trunk/src/main: java/org/apache/commons/math/analysis/interpolation/ java/org/apache/commons/math/exception/ java/org/apache/commons/math/util/ resour

2010-07-09 Thread Luc Maisonobe
Le 09/07/2010 01:45, er...@apache.org a écrit : Author: erans /** {...@inheritdoc} */ @Override public String getMessage() { -return MessageFactory.buildMessage(Locale.US, pattern, arguments); +final StringBuilder sb = new StringBuilder(); + +if

Re: svn commit: r962306 - in /commons/proper/math/trunk/src/main: java/org/apache/commons/math/analysis/interpolation/ java/org/apache/commons/math/exception/ java/org/apache/commons/math/util/ resour

2010-07-09 Thread Gilles Sadowski
I don't how we can use the same arguments in both the general and specific messages and later combine them together. The place holders {0}, {1}, ... will be replaced by the corresponding argument in both the specific and the general patterns. How is this different from a more complete