mirror of https://github.com/apache/maven.git
Remove redundant Null check
This commit is contained in:
parent
7ec819a2ce
commit
4b6eaadd28
|
@ -376,7 +376,7 @@ public class PluginParameterExpressionEvaluator
|
|||
{
|
||||
// The CLI should win for defining properties
|
||||
|
||||
if ( ( value == null ) && ( properties != null ) )
|
||||
if ( properties != null )
|
||||
{
|
||||
// We will attempt to get nab a system property as a way to specify a
|
||||
// parameter to a plugins. My particular case here is allowing the surefire
|
||||
|
|
Loading…
Reference in New Issue