From 681472bb305ec00f5a5a75237e2ad84978cbb006 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Tue, 29 Sep 2015 16:17:10 -0400 Subject: [PATCH] remove unnecessary comments --- .../processing/mode/java/pdex/LineMarker.java | 42 +++++-------------- 1 file changed, 10 insertions(+), 32 deletions(-) diff --git a/java/src/processing/mode/java/pdex/LineMarker.java b/java/src/processing/mode/java/pdex/LineMarker.java index 25dfb8c87..a812ec48c 100644 --- a/java/src/processing/mode/java/pdex/LineMarker.java +++ b/java/src/processing/mode/java/pdex/LineMarker.java @@ -25,26 +25,19 @@ package processing.mode.java.pdex; * Line markers displayed on the Error Column. */ public class LineMarker { - /** - * y co-ordinate of the marker - */ + /** y co-ordinate of the marker */ private int y; - /** - * Type of marker: Error or Warning? - */ + + /** Type of marker: Error or Warning? */ private int type = -1; - /** - * Error Type constant - */ + + /** Error Type constant */ public static final int ERROR = 1; - /** - * Warning Type constant - */ + + /** Warning Type constant */ public static final int WARNING = 2; - /** - * Problem that the error marker represents - * @see Problem - */ + + /** Problem that the error marker represents */ private Problem problem; @@ -54,42 +47,27 @@ public class LineMarker { } - /** - * set y co-ordinate of the marker - */ public void setY(int y) { this.y = y; } - /** - * y co-ordinate of the marker - */ public int getY() { return y; } - /** - * line number of the marker - */ public int getLineNumber() { return problem.getLineNumber(); } - /** - * Type of marker: ErrorMarker.Error or ErrorMarker.Warning? - */ + /** @return ERROR or WARNING */ public int getType() { return type; } - /** - * Problem that the error marker represents - * @see Problem - */ public Problem getProblem() { return problem; }