Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary null check in AspectJCompiler
  • Loading branch information
rhowe committed Jun 5, 2019
commit d48d35dd36f3daffb1b25f5b490dea0bbd5b5475
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ private AjBuildConfig buildCompilerConfig( CompilerConfiguration config )
}

checkForAspectJRT( cp );
if ( cp != null && !cp.isEmpty() )
if ( !cp.isEmpty() )
{
List<String> elements = new ArrayList<>( cp.size() );
for ( String path : cp )
Expand Down