fixed summary/description mapping

This commit is contained in:
Tony Tam 2014-10-20 17:34:48 -07:00
parent 681628dba2
commit 461cb51f6a

View File

@ -521,8 +521,8 @@ public class DefaultCodegen {
} }
op.path = path; op.path = path;
op.operationId = operationId; op.operationId = operationId;
op.summary = operation.getSummary(); op.summary = operation.getDescription();
op.notes = operation.getDescription(); op.notes = operation.getSummary();
op.tags = operation.getTags(); op.tags = operation.getTags();
Response methodResponse = null; Response methodResponse = null;