Skip to content

Commit

Permalink
Enhanced performance.
Browse files Browse the repository at this point in the history
  • Loading branch information
ning.zhang authored and zhiqiangqian committed Jul 22, 2014
1 parent f07209e commit cad7ffe
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -37,7 +37,6 @@
import org.eclipse.birt.report.designer.util.DNDUtil;
import org.eclipse.birt.report.designer.util.IVirtualValidator;
import org.eclipse.birt.report.model.api.ActionHandle;
import org.eclipse.birt.report.model.api.CachedMetaDataHandle;
import org.eclipse.birt.report.model.api.CellHandle;
import org.eclipse.birt.report.model.api.ColumnHintHandle;
import org.eclipse.birt.report.model.api.ComputedColumnHandle;
Expand Down Expand Up @@ -2023,13 +2022,13 @@ private static void formatDataHandle( DataItemHandle dataHandle,
}
}

String aliment = UIUtil.getClolumnHandleAlignment( column );
String aliment = hintHandle.getHorizontalAlign( );
if ( aliment != null )
{
styleHandle.setTextAlign( aliment );
}

String helpText = UIUtil.getClolumnHandleHelpText( column );
String helpText = hintHandle.getHelpText( );
if ( helpText != null )
{
dataHandle.setHelpText( helpText );
Expand Down

0 comments on commit cad7ffe

Please sign in to comment.