File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 359359 public string ParamType(OdcmParameter c) {
360360 var typeString = c.Type.GetTypeString();
361361 if (c.IsCollection){
362- typeString = String.Format("List<{0}>", c.Type.GetTypeString());
362+ typeString = String.Format("java.util. List<{0}>", c.Type.GetTypeString());
363363 } else if (typeString.Equals("Stream")) {
364364
365365 // Excel introduced the use of "Edm.Stream" types
@@ -515,8 +515,7 @@ import {0}.generated.*;
515515import {0}.options.*;
516516import {0}.serializer.*;
517517
518- import java.util.Arrays;
519- import java.util.List;";
518+ import java.util.Arrays;";
520519 return string.Format(format,
521520 host.CurrentModel.NamespaceName(),
522521 host.TemplateInfo.OutputParentDirectory);
@@ -643,7 +642,7 @@ public {1} {2}{3}{4} {{";
643642 {
644643 if (!property.IsNavigation())
645644 {
646- propertyType = "List<" + property.GetTypeString() + ">";
645+ propertyType = "java.util. List<" + property.GetTypeString() + ">";
647646 }
648647 else
649648 {
You can’t perform that action at this time.
0 commit comments