aboutsummaryrefslogtreecommitdiffstats
path: root/docs/teaching/exercises/figures/Line.java
diff options
context:
space:
mode:
Diffstat (limited to 'docs/teaching/exercises/figures/Line.java')
-rw-r--r--docs/teaching/exercises/figures/Line.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/teaching/exercises/figures/Line.java b/docs/teaching/exercises/figures/Line.java
index f21c1eff1..a26c4ee42 100644
--- a/docs/teaching/exercises/figures/Line.java
+++ b/docs/teaching/exercises/figures/Line.java
@@ -1,13 +1,13 @@
/* *******************************************************************
* Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Common Public License v1.0
- * which accompanies this distribution and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * PARC initial implementation
+ * All rights reserved.
+ * This program and the accompanying materials are made available
+ * under the terms of the Common Public License v1.0
+ * which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * PARC initial implementation
* ******************************************************************/
@@ -51,7 +51,7 @@ public class Line extends ShapeFigureElement {
}
private Line2D getLine2D() {
- return new Line2D.Float((float)getP1().getX(),
+ return new Line2D.Float((float)getP1().getX(),
(float)getP1().getY(),
(float)getP2().getX(),
(float)getP2().getY());