discussed in #418 reusing ProcessBuilder name is not great.
In particular when you write code like this:
void main() {
var pb = new ProcessBuilder("ls", "-l");
}
You get no error because ProcessBuilder is in java.lang and it is now quite tedious because the IDE will not help you import it.
How about ProcBuilder or ExecBuilder ?
discussed in #418 reusing
ProcessBuildername is not great.In particular when you write code like this:
You get no error because ProcessBuilder is in java.lang and it is now quite tedious because the IDE will not help you import it.
How about
ProcBuilderorExecBuilder?