// TWSI only operates on nouns
if (postags.get(i).startsWith("NN"))
{
try
{
Substitution subst = sensub.getSubstitution(i, tokenArray, postagsArray);
if (subst != null)
{
for (String[] substitution : subst.getSubstitutions())
{
//resultList.add(subst.getSense().replaceAll("@@", ""));
resultList.add(substitution[0]);
}
}