From 1fb8b5be385b165da7137462f55a6699174b551e Mon Sep 17 00:00:00 2001 From: Edmund Higham Date: Mon, 27 Jan 2025 13:10:02 -0500 Subject: [PATCH] [query] remove unused json impex on `Type` (#14800) This change has no security impact. --- hail/hail/src/is/hail/types/virtual/Type.scala | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hail/hail/src/is/hail/types/virtual/Type.scala b/hail/hail/src/is/hail/types/virtual/Type.scala index e68f8b8ba97..89212ddeb42 100644 --- a/hail/hail/src/is/hail/types/virtual/Type.scala +++ b/hail/hail/src/is/hail/types/virtual/Type.scala @@ -204,12 +204,6 @@ abstract class Type extends VType with Serializable { ord } - def jsonReader: JSONReader[Annotation] = - (a: JValue) => JSONAnnotationImpex.importAnnotation(a, this) - - def jsonWriter: JSONWriter[Annotation] = - (pk: Annotation) => JSONAnnotationImpex.exportAnnotation(pk, this) - def _typeCheck(a: Any): Boolean final def typeCheck(a: Any): Boolean = a == null || _typeCheck(a)