What do those yellow horizontal arrows in eclipse, at the left of the line numbers do?

JavaEclipse

Java Problem Overview


I'm talking about the lines that are in the same visual space as my break points. What do those do, and why are popping up and covering my break points?

I am in the Java perspective, i'm looking at the code (code editor view), the debugger is not running, my application is not running. My eclipse is Helios. and I've got RTC tools installed on it.

Thx, you guys are awesome.

EDIT: arrows are not triangles. I wasn't talking about the warnings :P

EDIT #2: a snapshot added:enter image description here

Java Solutions


Solution 1 - Java

The yellow arrows show up next to search results for me. If you go to the search tab and delete the results they should go away.

Solution 2 - Java

You can get rid of them by going to Preferences > General > Editors > Text Editors > Annotations, then look for "Search Results" and uncheck "Vertical Ruler".

Solution 3 - Java

This is what they look like. screen shot from eclips

Note that it's pointing at a blank line. I also did a search for some string and it did not affect the arrow. I have been trying to get "Extract Android String" to work from a keyboard shortcut (Mac OS) and may have found some other implicated command.

Edit: I see it now. Eclipse has more than one search command. This is not from command-F (find/replace). It is from control-H (search). There's a Search item on the menu bar as well.

Solution 4 - Java

not really sure what you are looking at...

for me, the little orange looking lines are on the right - and they represent compiler warnings. - you can hover your mouse over them for messages.

when you double click a word in the code, then more lines appear - where that word is also located in the file.

Solution 5 - Java

Those are warnings. If you click on them, useful suggestion will be shown to disappear them.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionvlad-ardeleanView Question on Stackoverflow
Solution 1 - JavaThomasView Answer on Stackoverflow
Solution 2 - JavaLuis SepView Answer on Stackoverflow
Solution 3 - JavagbarryView Answer on Stackoverflow
Solution 4 - JavaRandyView Answer on Stackoverflow
Solution 5 - JavazariView Answer on Stackoverflow