diff src/main/java/org/monetdb/mcl/parser/MCLParseException.java @ 866:6d229896c785

Remove not used/needed serialVersionUID Instead suppress the warning
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 01 Feb 2024 17:48:36 +0100 (15 months ago)
parents e890195256ac
children 2543e24eb79a
line wrap: on
line diff
--- a/src/main/java/org/monetdb/mcl/parser/MCLParseException.java
+++ b/src/main/java/org/monetdb/mcl/parser/MCLParseException.java
@@ -21,9 +21,8 @@ package org.monetdb.mcl.parser;
  * give an error offset whenever possible.  Alternatively it makes sure
  * that the error message includes the offending data read.
  */
+@SuppressWarnings("serial")
 public class MCLParseException extends java.text.ParseException {
-	private static final long serialVersionUID = 1L;
-
 	public MCLParseException(String e) {
 		super(e, -1);
 	}