-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 6
-
Component/s: client-libs
-
b92
-
generic
-
solaris_10
A trivial bug:
Just check the English API specification page: "http://java.sun.com/j2se/1.5.0/docs/guide/2d/api-jpeg/com/sun/image/codec/jpeg/JPEGDecodeParam.html"
You will see "(@see JPEGImageDecoder.decodeBufferedImage)", and "(@see JPEGImageDecoder.decodeRaster)", but, these strings should be links which link to the corresponding methods, instead of the plain text.
So we need update the source file "share/classes/com/sun/image/codec/jpeg/JPEGDecodeParam.java" with the following ways:
1. "(@see JPEGImageDecoder.decodeBufferedImage)" -> "{@see JPEGImageDecoder.decodeBufferedImage}"
2. "(@see JPEGImageDecoder.decodeRaster)" -> "{@see JPEGImageDecoder.decodeRaster}"
Just check the English API specification page: "http://java.sun.com/j2se/1.5.0/docs/guide/2d/api-jpeg/com/sun/image/codec/jpeg/JPEGDecodeParam.html"
You will see "(@see JPEGImageDecoder.decodeBufferedImage)", and "(@see JPEGImageDecoder.decodeRaster)", but, these strings should be links which link to the corresponding methods, instead of the plain text.
So we need update the source file "share/classes/com/sun/image/codec/jpeg/JPEGDecodeParam.java" with the following ways:
1. "(@see JPEGImageDecoder.decodeBufferedImage)" -> "{@see JPEGImageDecoder.decodeBufferedImage}"
2. "(@see JPEGImageDecoder.decodeRaster)" -> "{@see JPEGImageDecoder.decodeRaster}"