Really want to initialise some arguments in a Java method eg
public void delete(String name, int user_id=0)
{
//method body
}
so that the user_id does not have to necessarily be passed.
But i'm getting this Eclipse error that the token is invalid. How do i go about this?