JDK-4294246 : Some @since tags have extra characters in them
  • Type: Bug
  • Component: other-libs
  • Sub-Component: other
  • Affected Version: 1.2.0
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: solaris_2.6
  • CPU: sparc
  • Submitted: 1999-11-24
  • Updated: 2006-04-14
  • Resolved: 2006-04-14
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 6
6 b81Fixed
Related Reports
Relates :  
Description
Some @since tags throughout the Java Platform API have extra periods, spaces and letters:

 * @since 1.0
 * @since 1.1
 * @since 1.2
 * @since 1.2.2
 * @since 1.3 
 * @since 1.3.
 * @since JDK 
 * @since JDK 1.0.2
 * @since JDK 1.1
 * @since JDK 1.1.6
 * @since JDK 1.3
 * @since JDK1  
 * @since JDK1. 0
 * @since JDK1.0  
 * @since JDK1.0.  
 * @since JDK1.0.2
 * @since JDK1.0nu.
 * @since JDK1.0t.
 * @since JDK1.1  
 * @since JDK1.1.4
 * @since JDK1.1.6
 * @since JDK1.1s 
 * @since JDK1.2      
 * @since JDK1.3

Comments
EVALUATION It's pretty easy to change @since JDK1.3 to @since 1.3 and @since 1.3. to @since 1.3
27-03-2006

SUGGESTED FIX According to our established rule, everything below 1.2 should have "JDK"; else it should not have "JDK". We should do a count to see how many cases of 1.0, 1.0.2, 1.1, 1.1.4 and 1.1.6 there are -- if there are enough, perhaps we should drop "JDK" everywhere.
11-06-2004