Missing "plus" in the project tree under the node "src" before not empty package

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
0
7 comments
Avatar
Permanently deleted user

How the import line of the Test class looks like?

0
Avatar
Permanently deleted user

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;
  }

...

0
Avatar
Permanently deleted user

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
0
Avatar
Permanently deleted user

Sorry, I meant the package line. Please change

package org.test;

to

package ru.mobido.chitalka

and see whether it shows up correctly.

0
Avatar
Permanently deleted user

I removed  the package org.test altogether.
Poblema  remained.
There are still some some ideas.

0
Avatar
Permanently deleted user

You must not remove the package statement, but name it according to the
directory structure.

0
Avatar
Permanently deleted user

You  do not understand.
I completely removed the package  from the project and some of its reorganized.
Please read my next  post in thread.

0

Please sign in to leave a comment.