6657907: javadoc has unchecked warnings

Reviewed-by: bpatel
This commit is contained in:
Jonathan Gibbons 2008-07-15 19:22:51 -07:00
parent 43dbd05dde
commit a6f6acaf27
50 changed files with 411 additions and 396 deletions

View file

@ -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()) {