Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.9.1, 1.9.2
-
Fix Version/s: 1.10
-
Component/s: None
-
Labels:None
-
Number of attachments :
Activity
| Field | Original Value | New Value |
|---|---|---|
| Attachment | TestQDOX171.java [ 43102 ] |
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Fix Version/s | 1.10 [ 15020 ] | |
| Assignee | Robert Scholte [ rfscholte ] | |
| Resolution | Fixed [ 1 ] |
The getCodeBlock() removes Javadoc separator i.e. "spacestarspace"
Here is a small sample:
/** * bla * * bla * * bla * * * @param s a string * @return a string * @throws Exception */ public String myMethod( String s ) throws Exception { return null; }The result is the following:
/** * bla bla bla * * @param s a string * @return a string * @throws Exception */ public java.lang.String myMethod(java.lang.String s) throws java.lang.Exception { return null; }