Unused code in AppLobby?

Options
lazalong
edited September 2011 in Photon Server
Hey

Shouldn't this code in AppLobby.cs be removed (or rewritten) as the local "parameter" isn't used for anything?
private bool TryCreateGame(Operation operation, string gameId, Hashtable        properties, out GameState gameState, out OperationResponse errorResponse)
       {
       ....
            var parameter = new Dictionary<short, object> { { (short)ParameterCode.GameId, gameId } };
            if (properties != null)
            {
                parameter.Add((short)ParameterCode.GameProperties, properties);
            }
      ....

            return true;
        }

Comments