Whenever I create a new Java file in Eclipse and check off the option to add public static void main(String args[])
, this code is generated:
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
How do i:
- Remove the
@param args
comment - Change the indentation so each { is on a line of its own
- Remove the TODO auto generated comment