tags:

views:

101

answers:

1

It is possible to hide the warning messages in java?

+1  A: 

If you're referring to the warnings printed by the compiler, you could have a look at the SuppressWarnings annotation.

aioobe