mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6657907: javadoc has unchecked warnings
Reviewed-by: bpatel
This commit is contained in:
parent
43dbd05dde
commit
a6f6acaf27
50 changed files with 411 additions and 396 deletions
|
@ -231,7 +231,7 @@ public abstract class ExecutableMemberDocImpl
|
|||
StringBuffer result = new StringBuffer();
|
||||
result.append("(");
|
||||
for (List<Type> types = sym.type.getParameterTypes(); types.nonEmpty(); ) {
|
||||
Type t = (Type)types.head;
|
||||
Type t = types.head;
|
||||
result.append(TypeMaker.getTypeString(env, t, full));
|
||||
types = types.tail;
|
||||
if (types.nonEmpty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue