Skip to content

Commit

Permalink
Skip extended data check if root doesn't contains dataset.
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Thronson <cthronson@actuate.com>
  • Loading branch information
Carl Thronson committed Dec 31, 2014
1 parent d97156b commit e0227e5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1077,7 +1077,7 @@ else if ( DesignChoiceConstants.ANALYSIS_TYPE_MEASURE.equals( UIUtil.getColumnAn
}
}
else if ( root.getDataSet( ) == dataSet
|| ( getAdapter( ) != null && getAdapter( ).resolveExtendedData( root.getDataSet( ) )
|| ( getAdapter( ) != null && root.getDataSet( )!=null && getAdapter( ).resolveExtendedData( root.getDataSet( ) )
.equals( getAdapter( ).resolveExtendedData( dataSet ) ) ) )
{
container = DEUtil.getBindingHolder( container );
Expand Down

0 comments on commit e0227e5

Please sign in to comment.