where | represents the cursor position, and I do Generate Constructor, I end up with the following:
public class Test
{
public Test()
{
}
}
So the constructor goes onto the next line. I find this unintuitive, and frequently have to delete a line.
I find that the same thing happens for e.g. overriding a method. I don't remember this in IDEA 5.1.
Description
If I have the following class:
public class Test
{
|
}
where | represents the cursor position, and I do Generate Constructor, I end up with the following:
public class Test
{
public Test()
{
}
}
So the constructor goes onto the next line. I find this unintuitive, and frequently have to delete a line.
I find that the same thing happens for e.g. overriding a method. I don't remember this in IDEA 5.1.