Description
original code:
/** * <p>testException.</p> * * @throws java.lang.Exception when reader.read get wrong. */ public void testException() throws Exception { throw new Exception(); }
after we calling fix, it becomes:
/** * <p>testException.</p> * * @throws java.lang.Exception if any. */ public void testException() throws Exception { throw new Exception(); }
So why must I use "if any", and must change my original words?
I think this be a bug, but if it is by design, please tell me the reason.
Attachments
Issue Links
- links to