In Java, is there any difference between this two function declarations?
public void foo() {/*...*/}
public void foo(void) {/*...*/}
Here you can find the answear to this question but for C/C++. In these languages it makes totally sense the existance of both declaration styles.
But what is the point of this in Java ?