I keep getting this error message when I run this. I have no clue as to what could be wrong. Help please.
com/codegym/task/task02/task0205/Solution.java:15: error: reached end of file while parsing
}
^
package com.codegym.task.task02.task0205;
/*
Pay raise
*/
public class Solution {
public static void main(String[] args) {
hackSalary(7000);
}
public static void hackSalary(int a) {
int b = a + 1000;
System.out.println("Your salary is: "+ (b) +" dollars per month.");
}