G
Guest
Just curious, we no longer require void on a method that takes no
parameters;
void methodWithNoParameters(void) has been replaced by void
methodWithNoParameters().
Is there a good reason we still have to specify void for a method that
returns no result? For example;
private void methodWithNoReturn() could been replaced by private
methodWithNoReturn().
parameters;
void methodWithNoParameters(void) has been replaced by void
methodWithNoParameters().
Is there a good reason we still have to specify void for a method that
returns no result? For example;
private void methodWithNoReturn() could been replaced by private
methodWithNoReturn().