Fixed API doc problem

This commit is contained in:
Alena Prokharchyk 2011-11-09 13:27:35 -08:00
parent 8d128fa737
commit 3c3cf26f64

View File

@ -448,6 +448,7 @@ public class ApiXmlDocWriter {
for (Field responseField : responseFields) {
SerializedName nameAnnotation = responseField.getAnnotation(SerializedName.class);
if (nameAnnotation != null) {
Param paramAnnotation = responseField.getAnnotation(Param.class);
Argument respArg = new Argument(nameAnnotation.value());
@ -487,6 +488,7 @@ public class ApiXmlDocWriter {
}
}
}
}
Collections.sort(sortedArguments);
Collections.sort(sortedChildlessArguments);