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
String objects being immutable is another reason for thread-safe scenario above. Instead if mutable objects are used (say makeMutableArray..) then surely thread-safety will break.