Help with my script

OK so i have been trying to get my animations to add to my key board so when i play my game i can press the key and it does the animation of the gun but i get a error saying unexpected symbol public please help!

using UnityEngine;
using System.Collections;

public class Animations : MonoBehaviour {

//Holder for Weapons
public Transform WalkAnimationHolder;
public Transform JumpAnimationHolder;
public Transform SwayHolder;
public Transform RecoilHolder;

public void FixedUpdate()
{
     AnimationController();
	 SwayController();
{

  public AnimationController()
  {
  |
  }


public void SwayController()
{

}

You have:

public void FixedUpdate() 
{ 
  AnimationController(); 
  SwayController(); **{**

Just invert that last symbol “}” so you get:

public void FixedUpdate() 
{ 
  AnimationController(); 
  SwayController(); 
}