private void ProcessIndent()
 {
     string tokenText = sc.TokenText;
     if (sc.NextToken() == Token.IndentSpaces)
         tokenText += sc.TokenText;
     if (tokenText == "    ")
     {
         while (sc.NextToken() != Token.TextContent)
         {
         }
         if (!inUsers)
         {
             currentGroup = new Group(sc.TokenText);
         }
         else
         {
             currentUserName = sc.TokenText;
             currentUser = new User();
         }
     }
 }
 private void ProcessIndent()
 {
     String tokenText = sc.TokenText;
     if (sc.NextToken() == Token.IndentSpaces)
         tokenText += sc.TokenText;
     if (tokenText == "    ")
     {
         while (sc.NextToken() != Token.TextContent)
         {
         }
         currentGroup = new Group(sc.TokenText);
         ProgramLog.Debug.Log("Group name: " + currentGroup.Name);
     }
 }