Hooli
Hooli

Reputation: 1195

SuppressWarnings: Can use functional operations

How do I use @SuppressWarnings to hide this warning whenever I use normal for loops instead of functional operations in Java 8?

Upvotes: 2

Views: 922

Answers (1)

WillShackleford
WillShackleford

Reputation: 7018

I found what appears to be the correct option:

  1. Select from Menu Tools -> Options
  2. Select Editor Button at the Top
  3. Select Hints Tab
  4. Select Language Java in Combo Box
  5. In the tree expand General and uncheck "Use functional operations"

Upvotes: 6

Related Questions