Question:
Does anybody know wht this error means:
public static void wait(long x) {
_______________^
overriding method is static
Repl link:
public static void wait(long x) {
try {
Thread.sleep(x);
} catch(Exception e) {}
// waits for x seconds
}