added array support

This commit is contained in:
Tony Tam 2015-03-24 19:56:04 -07:00
parent dc9a00809c
commit e82ecf695d

View File

@ -745,6 +745,8 @@ public class DefaultCodegen {
op.isMapContainer = Boolean.TRUE;
else if ("list".equalsIgnoreCase(cm.containerType))
op.isListContainer = Boolean.TRUE;
else if ("array".equalsIgnoreCase(cm.containerType))
op.isListContainer = Boolean.TRUE;
}
else
op.returnSimpleType = true;