Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

show list of "raw type" warning in IntelliJ IDEA 10

I'm using IntelliJ IDEA 10.5.2 with Java 1.6.

Having switched on the "Raw use of parametrized class" inspection I can see the offending lines highlighted in files where the problem exists, which is useful.

Is there a way to see, in one place, a list of all code in the project falling foul of such "inspections" as one can in the "Markers view" in Eclipse (see below for example). Does Eclipse (compiler) provide different/more info re generics than IntelliJ?

Example from Eclipse "Markers view" of what it'd be useful to see in IntelliJ too:

  1. Point is a raw type. References to generic type Point should be parameterized ...
  2. Type safety: The expression of type PointInfo needs unchecked conversion to conform to PointInfo ...
like image 606
involuntary Avatar asked Dec 13 '11 12:12

involuntary


Video Answer


1 Answers

Please try Analyze | Inspect Code for the whole project.

like image 139
CrazyCoder Avatar answered Sep 20 '22 15:09

CrazyCoder