A method has both static and hide modifiers. This is not allowed since the static method is associated with the current class, and hide only applies to members associated with class instance.
To correct this error
-
Remove either the static or hide modifier from the method declaration.