public class NestedSyncMethods { void synchronized outer() { inner(); } void synchronized inner() { ... } }