As shown in example below, once lock is taken on an object in call method, there is no need for further methods to have synchronized keyword.
public class Prac
{ 
    public static void main(String[] args)
    {
      new Prac().call();
    }
    private synchronized void call()
    {
      further();
    }
    private synchronized void further()
    {
      oneMore();
    }
    private synchronized void oneMore()
    {
      // do something
    }
}
But, if I still add synchronized keyword to further and onceMore, how will performance be impacted? Or not impacted at all?
EDIT : Does it add costs of checking(after encountering synchronized keyword) if it has lock or lock is required? Internally does this checking adds overhead?
EDIT : application will not have one thread only, this code here is just sample code. may be replace main with run method
 
     
     
     
    
