Title: new Code Layout feature for Adriana

Hi,

I was wondering if the following Code Layout feature can be considered for Adriana:

Original Code Snippet:
... ...

public void blah() throws com.yada.YadaException
{
        ... ... ...
}


After Code Layout:
... ...
import com.yada.YadaException;
... ...

public void blah() throws YadaException
{
        ... ... ...
}


Since it was known that Exception class is fully known as com.yada.YadaException, it should be fairly straight-forward for IDEA to auto-optimize the import statements as well.  What do you guys think?


Thanks,
Mike Liu


Reply via email to