Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed Oct 3, 2024
1 parent 7ae149e commit fbbd9bf
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ public abstract class Error {
public final String messageType;
/** Error message. */
public final String message;
/** Annotations */
public final Set<AddAnnotation> annotations;
/** The fixes which can resolve this error (possibly null). */
protected final Set<Fix> fixes;
/** Offset of program point in original version where error is reported. */
Expand All @@ -62,7 +60,6 @@ public Error(
this.messageType = messageType;
this.message = message;
this.offset = offset;
this.annotations = annotations;
this.fixes = computeFixesFromAnnotations(annotations);
}

Expand Down

0 comments on commit fbbd9bf

Please sign in to comment.