0

I love the hot swap feature of Java and i'm using it a lot while debugging. I can't compile single classes that contains references to a class from another module in IntelliJ though (with CTRL + SHIFT + F9). The error I get is the common java: cannot find symbol. Seems that the compiler doesn't see the other module.

The module is included under Project structure. Should I configure something else?

ianaz
  • 2,490
  • 3
  • 28
  • 37

1 Answers1

1

Compilation with dependencies works only using Build | Make.

ianaz
  • 2,490
  • 3
  • 28
  • 37