Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
rhbz1008251 - filter out invalid text flow target in TM result
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Huang committed Sep 17, 2013
1 parent 7a06c68 commit 727ac88
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -189,6 +189,10 @@ private static boolean isValidResult(HTextFlowTarget textFlowTarget)
{
return false;
}
else if (!textFlowTarget.getState().isTranslated())
{
return false;
}
else
{
HProjectIteration projectIteration = textFlowTarget.getTextFlow().getDocument().getProjectIteration();
Expand Down

0 comments on commit 727ac88

Please sign in to comment.