-10

I'm programming in Java with Eclipse, and after a time appears a

'!'

in some class. What's that means?

3 Answers3

2

Perhaps it is...

  • a warning icon enter image description here. then your code requires requires review.
  • build path error icon enter image description here - check your build dependencies

Reference: What do the icons in Eclipse mean?

Community
  • 1
  • 1
Reimeus
  • 158,255
  • 15
  • 216
  • 276
0

Exclamation mark in Eclipse means that Eclipse has detected some fault in your code but it has not been deemed critical enough to be marked as an error (Red color X marker) so it displays it instead as a yellow exclamation mark Signifying it as a warning not an error.

Ceiling Gecko
  • 3,104
  • 2
  • 24
  • 33
0

It means that line was never used in the code like any import or variables.

user1544460
  • 173
  • 7
  • 18