When I have code in java that uses streams intellij displays type hints about the result of the stream.
I would like to disable these hints
Example with the following code:
Stream.of (1, 2. 3)
.map (n -> n + 1)
.map (n -> n % 2 == 0 ? "even number " + n : "odd number " + n)
.peek (System.out:println)
.map (s -> Float.parseFloat (s.substring (s.lastIndexOf (" "))))
;
I have turned off other tool tips for parameters, but the hints after the streams are still present. They are visually very distracting while providing me with little extra information.
I would also be happy if I knew how to change the color or style of the hints (I have Material Theme UI installed)