On 10/12/2017 4:03 PM, Ej Magdaluyo wrote:
> *if*(fileRequestWrapper!=*null* &&fileRequestWrapper
> .getErrors()!=*null*){
I worked and found the bug :) the new version of MultiPartRequestWrapper
instantiates it's `error` inside it's constructor. So you should rewrite
above as:
if(fileRequestWrapper!=null && fileRequestWrapper.hasErrors()){
Hope this helps!
Yasser.

