Merge pull request #25 from deadmoose/semicolons

Spurious semicolons
This commit is contained in:
Michael Bayne
2014-04-04 07:15:08 -07:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ public class Frustum
{
/** Intersection types indicating that the frustum does not intersect, intersects, or fully
* contains, respectively, the parameter. */
public enum IntersectionType { NONE, INTERSECTS, CONTAINS };
public enum IntersectionType { NONE, INTERSECTS, CONTAINS }
/**
* Creates an empty (invalid) frustum.
+1 -1
View File
@@ -11,7 +11,7 @@ public class Frustum
{
/** Intersection types indicating that the frustum does not intersect, intersects, or fully
* contains, respectively, the parameter. */
public enum IntersectionType { NONE, INTERSECTS, CONTAINS };
public enum IntersectionType { NONE, INTERSECTS, CONTAINS }
/**
* Creates an empty (invalid) frustum.