A method has both static and abstract modifiers. This is not allowed since static methods are associated with the class itself, but abstract methods are inherited from outside the class.
To correct this error
-
Remove either the static or abstract modifier from the method declaration.