[MNG-4542] StringSearchModelInterpolator concurrency problem

Shameful removal of printStackTrace in catch block

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@902085 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kristian Rosenvold 2010-01-22 13:46:49 +00:00
parent 0bfae6deed
commit 97d25dc1d9
1 changed files with 0 additions and 3 deletions

View File

@ -284,14 +284,11 @@ else if ( Map.class.isAssignableFrom( type ) )
}
catch ( IllegalArgumentException e )
{
e.printStackTrace(System.err);
problems.add( Severity.ERROR, "Failed to interpolate field3: " + currentField +
" on class: " + cls.getName(), e );
}
catch ( IllegalAccessException e )
{
e.printStackTrace(System.err);
problems.add( Severity.ERROR, "Failed to interpolate field4: " + currentField +
" on class: " + cls.getName(), e );
}