ActiveTransportLoader.checkActiveTransportString C# (CSharp) Method

checkActiveTransportString() private method

private checkActiveTransportString ( string value ) : string
value string
return string
    private string checkActiveTransportString(string value)
    {
        if (String.IsNullOrEmpty(value))
          {
        Debug.Log("Error: Empty field");
        return "";
          }
        return value;
    }