aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java')
-rw-r--r--src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
index 2da0f6850..cda46d8f6 100644
--- a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
+++ b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
@@ -502,11 +502,11 @@ public final class OutlineShape implements Comparable<OutlineShape> {
* Closes the last outline in the shape.
* <p>
* Checks whether the last vertex equals to the first of the last outline.
- * If not equal, it either appends a clone of the first vertex
- * or prepends a clone of the last vertex, depending on <code>closeTail</code>.
+ * If not equal, it either appends a copy of the first vertex
+ * or prepends a copy of the last vertex, depending on <code>closeTail</code>.
* </p>
- * @param closeTail if true, a clone of the first vertex will be appended,
- * otherwise a clone of the last vertex will be prepended.
+ * @param closeTail if true, a copy of the first vertex will be appended,
+ * otherwise a copy of the last vertex will be prepended.
*/
public final void closeLastOutline(final boolean closeTail) {
if( getLastOutline().setClosed( closeTail ) ) {