Skip to content

Commit

Permalink
[MNG-4542] StringSearchModelInterpolator concurrency problem
Browse files Browse the repository at this point in the history
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
  • Loading branch information
krosenvold committed Jan 22, 2010
1 parent 0bfae6d commit 97d25dc
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -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 );
}
Expand Down

0 comments on commit 97d25dc

Please sign in to comment.