2

I have a java web project in which I created new class files. But there is a question mark (?) showing on the class file icon. Will this interfere with the execution of my project? Why is the question mark showing?


The icon in question:

The icon

Thomas Stets
  • 3,015
  • 4
  • 17
  • 29
Nishat Lakhani
  • 733
  • 1
  • 8
  • 20
  • _It cause or stops the execution_. Why don't check this yourself. – SatyaTNV Feb 12 '16 at 09:45
  • It just means it was changed and *not* compiled since then. – Shark Feb 12 '16 at 09:46
  • 2
    Possible duplicate of [Why does Eclipse Java Package Explorer show question mark on some classes?](http://stackoverflow.com/questions/4307086/why-does-eclipse-java-package-explorer-show-question-mark-on-some-classes) – Aleksandr M Feb 12 '16 at 10:45

1 Answers1

8

It means that the file is new and is not present yet in the repository. You need to commit it.

k4ppa
  • 4,122
  • 8
  • 26
  • 36