0

I'm learning how to write java (In Eclipse) add everything was going good until suddenly it highlighted all of my code in and i can't find how to switch it off. The code doesn't matter just

The strange Highlighting of my code in eclipse
The strange Highlighting of my code in eclipse

Hovercraft Full Of Eels
  • 283,665
  • 25
  • 256
  • 373
mrfroggy
  • 9
  • 3

1 Answers1

0

It's a special 'code coverage' run. Eclipse is painting in red all lines that have never been executed yet, in green all lines that have, and in yellow all lines where some but not all ways through it have been covered.

See Clearing coverage highlighting in Eclipse for how to get rid of this.

rzwitserloot
  • 85,357
  • 5
  • 51
  • 72