I was wondering if you have a static method that is not synchronised, but does not modify any static variables is it thread-safe? What abou
A method can only be thread-unsafe when it changes some shared state. Whether it's static or not is irrelevant.