|
|
|
|
|
by mbell
5183 days ago
|
|
In Java annotations can be used to ignore compiler warnings, not runtime errors. To get the same effect as @ you'd have to use try {} catch {} blocks all over the place and leave the catch blocks empty, as with any other language with runtime exceptions. Sadly this is done more that one would think... |
|