parameter to avoid supression of unused tags

This commit is contained in:
Arndt 2016-12-11 19:33:21 +01:00
parent dd07a1bf57
commit 8c530c87cd
5 changed files with 22 additions and 0 deletions

View file

@ -777,6 +777,14 @@ public abstract class BExpressionContext implements IByteArrayUnifier
return idx < lookupIdxUsed.length ? lookupIdxUsed[idx] : false;
}
public final void setAllTagsUsed()
{
for( int i=0; i<lookupIdxUsed.length; i++ )
{
lookupIdxUsed[i] = true;
}
}
int getLookupValueIdx( int nameIdx, String value )
{
BExpressionLookupValue[] values = lookupValues.get( nameIdx );