Newbie! error CS1513: } expected - Can't find solution

Hi all,

I’m currently learning the MiniKart Fmod game tutorial, however I keep getting the error code ‘error CS1513: } expected’ after deleting the contents of the CreateSFX function… I know it’s a missing ‘}’ but I have no idea where the error is… any help would be hugely appreciated!

using UnityEngine;
using UnityEngine.Assertions;
using UnityEngine.UI;

public class ObjectiveToast : MonoBehaviour
{
    [Header("References")]
    [Tooltip("Text content that will display the title")]
    public TMPro.TextMeshProUGUI titleTextContent;
   
    [Tooltip("Text content that will display the description")]
    [SerializeField]
    protected TMPro.TextMeshProUGUI descriptionTextContent;
    [Tooltip("Text content that will display the counter")]
    public TMPro.TextMeshProUGUI counterTextContent;

    [Tooltip("Rect that will display the description")]
    public RectTransform subTitleRect;
    [Tooltip("Canvas used to fade in and out the content")]
    public CanvasGroup canvasGroup;

   // [Tooltip("Layout group containing the objective")]
   // public HorizontalOrVerticalLayoutGroup layoutGroup;

    [Header("Transitions")]
    [Tooltip("Delay before moving complete")]
    public float completionDelay;
    [Tooltip("Duration of the fade in")]
    public float fadeInDuration = 0.5f;
    [Tooltip("Duration of the fade out")]
    public float fadeOutDuration = 2f;

    [Header("Sound")]
    [Tooltip("Sound that will be player on initialization")]
    public AudioClip initSound;
    [Tooltip("Sound that will be player on completion")]
    public AudioClip completedSound;

    [Header("Movement")]
    [Tooltip("Time it takes to move in the screen")]
    public float moveInDuration = 0.5f;
    [Tooltip("Animation curve for move in, position in x over time")]
    public AnimationCurve moveInCurve;

    [Tooltip("Time it takes to move out of the screen")]
    public float moveOutDuration = 2f;
    [Tooltip("Animation curve for move out, position in x over time")]
    public AnimationCurve moveOutCurve;

    float m_StartFadeTime;
    bool m_IsFadingIn;
    bool m_IsFadingOut;
    bool m_IsMovingIn;
    bool m_IsMovingOut;
    AudioSource m_AudioSource;
    RectTransform m_RectTransform;

    public void Initialize(string titleText, string descText, string counterText, bool isOptionnal, float delay)
    {
        // set the description for the objective, and forces the content size fitter to be recalculated
        Canvas.ForceUpdateCanvases();

        m_RectTransform = GetComponent<RectTransform>();
        DebugUtility.HandleErrorIfNullGetComponent<RectTransform, ObjectiveToast>(m_RectTransform, this, gameObject);
       
        titleTextContent.text = titleText;
        SetDescriptionText(descText);
        counterTextContent.text = counterText;

      
        LayoutRebuilder.ForceRebuildLayoutImmediate(m_RectTransform);
      

        m_StartFadeTime = Time.time + delay;
        // start the fade in
        m_IsFadingIn = true;
        m_IsMovingIn = true;
    }

    public void Complete()
    {
        m_StartFadeTime = Time.time + completionDelay;
        m_IsFadingIn = false;
        m_IsMovingIn = false;

        // if a sound was set, play it
      

        // start the fade out
        m_IsFadingOut = true;
        m_IsMovingOut = true;
    }

    public void SetDescriptionText(string text)
    {
        descriptionTextContent.text = text;
        subTitleRect.gameObject.SetActive(!string.IsNullOrEmpty(text));
    }
    void Update()
    {
        float timeSinceFadeStarted = Time.time - m_StartFadeTime;

        if (m_IsFadingIn && !m_IsFadingOut)
        {
            // fade in
            if (timeSinceFadeStarted < fadeInDuration)
            {
                // calculate alpha ratio
                canvasGroup.alpha = timeSinceFadeStarted / fadeInDuration;
            }
            else
            {
                canvasGroup.alpha = 1f;
                // end the fade in
                m_IsFadingIn = false;

              
            }
        }

        if (m_IsMovingIn && !m_IsMovingOut)
        {
            // move in
            if (timeSinceFadeStarted < moveInDuration)
            {
                m_RectTransform.anchoredPosition =
                    new Vector2((int) moveInCurve.Evaluate(timeSinceFadeStarted / moveInDuration),   m_RectTransform.anchoredPosition.y);
               
            }
            else
            {
                // making sure the position is exact
                m_RectTransform.anchoredPosition = new Vector2(0,  m_RectTransform.anchoredPosition.y);

                m_IsMovingIn = false;
            }

        }

        if (m_IsFadingOut)
        {
            // fade out
            if (timeSinceFadeStarted < fadeOutDuration)
            {
                // calculate alpha ratio
                canvasGroup.alpha = 1 - (timeSinceFadeStarted) / fadeOutDuration;
            }
            else
            {
                canvasGroup.alpha = 0f;

                // end the fade out, then destroy the object
                m_IsFadingOut = false;
               gameObject.SetActive(false);
            }
        }

        if (m_IsMovingOut)
        {
            // move out
            if (timeSinceFadeStarted < moveOutDuration)
            {
                m_RectTransform.anchoredPosition =
                    new Vector2((int) moveOutCurve.Evaluate(timeSinceFadeStarted / moveOutDuration),
                        m_RectTransform.anchoredPosition.y);

            }
            else
            {
                m_IsMovingOut = false;
           }

    }

Don’t you just need a } to close the class, on line 174? Otherwise, please show the entire error message, it should show the line number and character position.