If this is your product, you can request to edit it here.
Version Reviewing: 6.0c
"Very dated, but still works"
Summary:
Microsoft Visual SourceSafe has been retired for many years now, and can't be recommended due to the numerous other more modern and free version control software available now. Still, SourceSafe is easy to setup for a small company, is easy to use, is stable, and still runs under current versions of Windows.
|
What does this code do?
public class Demo { public void method1() { synchronized (String.class) { System.out.println("on String.class object"); synchronized (Integer.class) { System.out.println("on Integer.class object"); } } }
Programming Language: Java