Final arguments in interface methods – what’s the point?
It doesn’t seem like there’s any point to it. According to the Java Language Specification 4.12.4: Declaring a variable final can serve as useful documentation that its value will not change and can help avoid programming errors. However, a final modifier on a method parameter is not mentioned in the rules for matching signatures of … Read more