The Java language allows you to call a static method using an instance to identify the class, eg
MyClass ins = new MyClass();
ins.staticMethod();
this is now considered to be bad form and you are supposed to use the class to call static methods, ieMyClass.staticMethod();
Just update your static method calls to use the class rather than an instance.