Hello
ja...@chromium.orgI would like to formally update the styleguide/java/java.md to call out that importing classes before usage is better, eg
import org.chromium.foo.Bar;
...
Bar bar = new Bar("", false);
Rather than fully qualifying at the point of usage
org.chromium.foo.Bar bar = new org.chromium.foo.Bar("", false);
I think there is an implicit assumption shared by all of us humans working on Chrome that this is the better and natural way to write Java code.
But recently AI has been fully qualifying classes. As a we
build new AI tools, and reference our style guide, I want to ensure the guide explicitly calls this out to give us the best chance of fixing this systematic problem.
Thanks,
Sky