Oleg,

Sorry to bug you about coding style, but this is important for the whole team 
to be able to maintain code.

For conditional (and loops):
- one space after if/for statement
- always add a block, even if it's not technically necessary

Regards,

Hervé

Le samedi 14 février 2009, [email protected] a écrit :
> Author: ogusakov
> Date: Sat Feb 14 04:36:21 2009
> New Revision: 744389
>
> URL: http://svn.apache.org/viewvc?rev=744389&view=rev
> Log:
> [MNG-3969] intermediate commit
>
[SNAP]
> +
> +    @Override
> +    public void setId( String id )
> +    {
> +        super.setId( id );
> +
> +        if( _sourceDependency != null )
> +            _sourceDependency.setId( id );
> +    }
> +
> +    public void setSource( String pom )
> +    {
> +        _sourceDependency = createDependency();
> +
> +        if( getId() != null  )
> +            _sourceDependency.setId( getId() );
> +
> +        _sourceDependency.setPom( pom );
> +    }
[SNAP]

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to