extscript-core-root/extscript-core/attic/EngineScala.java [88:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void copyProperties(Object dest, Object src)
    {
        try
        {
            BeanUtils.copyProperties(dest, src);
        }
        catch (IllegalAccessException e)
        {
            log.log(Level.FINEST, e.toString());
            //this is wanted
        }
        catch (InvocationTargetException e)
        {
            log.log(Level.FINEST, e.toString());
            //this is wanted
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



extscript-core-root/extscript-core/src/main/java/org/apache/myfaces/extensions/scripting/core/engine/EngineJRuby.java [90:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void copyProperties(Object dest, Object src)
    {
        try
        {

            BeanUtils.copyProperties(dest, src);
        }
        catch (IllegalAccessException e)
        {
            log.log(Level.FINEST, e.toString());
            //this is wanted
        }
        catch (InvocationTargetException e)
        {
            log.log(Level.FINEST, e.toString());
            //this is wanted
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



