From 085fdaa75a7d63dc2a363b93f7de97477947dc6a Mon Sep 17 00:00:00 2001 From: Martin Traverso Date: Mon, 4 Nov 2024 17:54:29 +0100 Subject: [PATCH] Remove unused class --- .../io/trino/sql/planner/IrTypeAnalyzer.java | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 core/trino-main/src/main/java/io/trino/sql/planner/IrTypeAnalyzer.java diff --git a/core/trino-main/src/main/java/io/trino/sql/planner/IrTypeAnalyzer.java b/core/trino-main/src/main/java/io/trino/sql/planner/IrTypeAnalyzer.java deleted file mode 100644 index c17aca9a8b1ff..0000000000000 --- a/core/trino-main/src/main/java/io/trino/sql/planner/IrTypeAnalyzer.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package io.trino.sql.planner; - -/** - * This class is to facilitate obtaining the type of an expression and its subexpressions - * during planning (i.e., when interacting with IR expression). It will eventually get - * removed when we split the AST from the IR and we encode the type directly into IR expressions. - */ -public class IrTypeAnalyzer -{ - public IrTypeAnalyzer() {} -}