google-code-export / umple

Automatically exported from code.google.com/p/umple
1 stars 0 forks source link

Attribute Lists are initialized improperly #383

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
class X
{
  Integer[] bad;
}

What is the expected output? What do you see instead?
the constructor should initialize the List attribute(bad) as 
bad = new ArrayList<Integer>();
but it initializes it as
bad = new ArrayList<int>();

Original issue reported on code.google.com by RedEyedM...@gmail.com on 11 Mar 2013 at 7:29

GoogleCodeExporter commented 9 years ago

Original comment by RedEyedM...@gmail.com on 11 Mar 2013 at 7:29

GoogleCodeExporter commented 9 years ago
Fixed, along with some resulting errors of the fix. This issue should now be 
fixed.

Original comment by RedEyedM...@gmail.com on 6 May 2013 at 6:27

GoogleCodeExporter commented 9 years ago

Original comment by TimothyCLethbridge on 12 Sep 2013 at 2:43