";" after if statement??



What does it mean when a ";" is inserted after an if statement?

if (x == 2){
System.out.println("x = 2");
};


.