Missing "plus" in the project tree under the node "src" before not empty package Follow
Version idea from the 9th appeared not very nice bug.
In the project's view disappears before plus the package containing the classes
What is strange packages always the same.
After the folding / unfolding of the parent node (in my case, the node src) plus reappears.
This happens in all versions 9.x
Who's watching something that you like?
Registered BUG http://youtrack.jetbrains.net/issue/IDEA-52750
but I am afraid that this is my personal bug.
Attachment(s):
idea bug.JPG
Please sign in to leave a comment.
How the import line of the Test class looks like?
Not quite understand the question.
Package org.test not used in the project.
But try to remove it.
package org.test;
import javax.persistence.*;
/**
* User: John
* Date: 28.01.2010
* Time: 9:59:39
*/
@Entity
public class Test {
private int id;
@Column(name = "id", table = "test")
@Basic
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
...
I reorganized the project in hopes to correct the situation.
It did not help.
Before the package ru.mobido.chitalka.ado constantly disappears plus.
Attachment(s):
idea bug2.JPG
Sorry, I meant the package line. Please change
package org.test;
to
package ru.mobido.chitalka
and see whether it shows up correctly.
I removed the package org.test altogether.
Poblema remained.
There are still some some ideas.
You must not remove the package statement, but name it according to the
directory structure.
You do not understand.
I completely removed the package from the project and some of its reorganized.
Please read my next post in thread.