Example #1
0
 void TrimChoiceContent(ref ContentList content)
 {
     if (content != null)
     {
         content.TrimTrailingWhitespace();
         if (content.content.Count == 0)
         {
             content = null;
         }
     }
 }