changeset 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 (14 months ago)
parents c196531f300c
children 5a59910e8f87
files src/main/java/org/monetdb/mcl/parser/MCLParseException.java
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
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);
 	}