Hayk Nahapetyan
Hayk Nahapetyan

Reputation: 4550

yellow squiggly underline in Eclipse

In my app I saw some words with yellow squiggly underline. What they are mean?

Upvotes: 0

Views: 6722

Answers (2)

Hayk Nahapetyan
Hayk Nahapetyan

Reputation: 4550

Those are warnings from spell checker.

I could disable it from Window->Preferences->General->Editors->Text Editors->Spelling.

Also if the word is within a string then it a spelling error if the yellow line is on a variable or function then it could be a number of things such as the variable or method is not used, or the variable is not initialised, or if on a function call then it could be that the function has been deprecated.as sad @Boardy , thanks :)

Upvotes: 3

Boardy
Boardy

Reputation: 36205

It depends on the context. If the word is within a string then it a spelling error if the yellow line is on a variable or function then it could be a number of things such as the variable or method is not used, or the variable is not initialised, or if on a function call then it could be that the function has been deprecated.

Also, if you hover your mouse over the yellow squiggly line it will usually tell you what its warning you about.

Upvotes: 2

Related Questions