Skip to content

Commit 3033afd

Browse files
committed
Corrected SurfacePolygon copy constructor.
1 parent c484f0a commit 3033afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gov/nasa/worldwind/render/SurfacePolygon.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public SurfacePolygon(SurfacePolygon source)
8383
{
8484
super(source);
8585

86-
this.boundaries = source.boundaries;
86+
this.boundaries.addAll(source.boundaries);
8787
}
8888

8989
/**

0 commit comments

Comments
 (0)