On 19/03/2013 11:01, Simone Tripodi wrote:
> cool, thanks!

No problem. Thanks for all your recent work on FileUpload (and to you
sebb). It is much appreciated.

Mark


> 
> http://people.apache.org/~simonetripodi/
> http://simonetripodi.livejournal.com/
> http://twitter.com/simonetripodi
> http://www.99soft.org/
> 
> 
> On Tue, Mar 19, 2013 at 11:56 AM,  <ma...@apache.org> wrote:
>> Author: markt
>> Date: Tue Mar 19 10:56:17 2013
>> New Revision: 1458220
>>
>> URL: http://svn.apache.org/r1458220
>> Log:
>> There needs to be the same number of place-holders as there are replacements.
>> Fixes an issue introduced in r1453239.
>> Identified by FindBugs running against the Tomcat code base (which has a 
>> package renamed copy of FileUpload).
>>
>> Modified:
>>     
>> commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUploadBase.java
>>
>> Modified: 
>> commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUploadBase.java
>> URL: 
>> http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUploadBase.java?rev=1458220&r1=1458219&r2=1458220&view=diff
>> ==============================================================================
>> --- 
>> commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUploadBase.java
>>  (original)
>> +++ 
>> commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/FileUploadBase.java
>>  Tue Mar 19 10:56:17 2013
>> @@ -348,7 +348,7 @@ public abstract class FileUploadBase {
>>                  } catch (FileUploadIOException e) {
>>                      throw (FileUploadException) e.getCause();
>>                  } catch (IOException e) {
>> -                    throw new IOFileUploadException(format("Processing of 
>> %s request failed. ",
>> +                    throw new IOFileUploadException(format("Processing of 
>> %s request failed. %s",
>>                                                             
>> MULTIPART_FORM_DATA, e.getMessage()), e);
>>                  }
>>                  final FileItemHeaders fih = item.getHeaders();
>>
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> For additional commands, e-mail: dev-h...@commons.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to